-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
64 lines (64 loc) · 1.75 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "javascript-terminal",
"version": "1.1.1",
"description": "Emulate a terminal environment in JavaScript",
"main": "lib/terminal.js",
"unpkg": "lib/terminal.min.js",
"scripts": {
"build": "webpack --mode development && webpack --mode production",
"test": "cross-env NODE_PATH=./src mocha --require @babel/register --colors './test/**/*.spec.js' './demo-**/**/*.spec.js'",
"test:min": "yarn run test --reporter min",
"test:coverage": "nyc yarn run test",
"cli": "node demo-cli",
"artifact:test-coverage": "nyc --reporter=html yarn run test"
},
"repository": {
"type": "git",
"url": "https://github.com/rohanchandra/javascript-terminal.git"
},
"keywords": [
"terminal",
"emulation"
],
"author": "Rohan Chandra",
"license": "MIT",
"bugs": {
"url": "https://github.com/rohanchandra/javascript-terminal/issues"
},
"homepage": "https://github.com/rohanchandra/javascript-terminal",
"nyc": {
"exclude": [
"test",
"lib"
]
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/plugin-proposal-object-rest-spread": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@babel/register": "^7.9.0",
"babel-loader": "^8.1.0",
"babel-plugin-add-module-exports": "^1.0.2",
"chai": "^4.2.0",
"chai-immutable": "^2.1.0",
"chai-spies": "^1.0.0",
"cross-env": "^7.0.2",
"eslint": "^6.8.0",
"eslint-loader": "^4.0.0",
"mocha": "^7.1.1",
"nyc": "^15.0.1",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11"
},
"dependencies": {
"get-options": "^1.2.0",
"immutable": "^4.0.0-rc.12",
"minimatch": "^3.0.4",
"minimatch-capture": "^1.1.0"
},
"files": [
"lib/terminal.js",
"lib/terminal.min.js"
]
}