forked from rohanchandra/react-terminal-component
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.41 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.41 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "react-terminal-component",
"version": "1.1.1",
"description": "React component that renders a terminal emulator",
"main": "lib/react-terminal-component.js",
"scripts": {
"build": "webpack --mode development && webpack --mode production",
"dev": "webpack --progress --colors --watch --mode development",
"test": "cross-env NODE_PATH=./src mocha --require babel-core/register --colors './test/**/*.spec.js'",
"test:min": "yarn run test --reporter min",
"test:coverage": "nyc yarn run test",
"storybook": "start-storybook -p 9001 -c .storybook NODE_PATH=./src",
"artifact:test-coverage": "nyc --reporter=html yarn run test",
"artifact:storybook": "build-storybook -c .storybook -o .storybook_output"
},
"repository": {
"type": "git",
"url": "https://github.com/rohanchandra/react-terminal-component.git"
},
"keywords": [
"terminal",
"emulation"
],
"author": "Rohan Chandra",
"license": "MIT",
"bugs": {
"url": "https://github.com/rohanchandra/react-terminal-component/issues"
},
"homepage": "https://github.com/rohanchandra/react-terminal-component",
"nyc": {
"exclude": [
"test",
"lib"
]
},
"devDependencies": {
"@storybook/react": "^3.3.15",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-loader": "^7.1.4",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-class-properties": "6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"chai": "^4.1.2",
"chai-immutable": "^2.0.0-alpha.1",
"chai-spies": "^1.0.0",
"cross-env": "^5.1.4",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.19.1",
"eslint-loader": "^2.0.0",
"eslint-plugin-react": "^7.7.0",
"javascript-terminal": "^1.0.2",
"mocha": "^5.0.5",
"nyc": "^11.6.0",
"react": "^16.3.0",
"react-dom": "^16.3.0",
"webpack": "^4.4.1",
"webpack-cli": "^2.0.13",
"yargs": "^11.0.0"
},
"dependencies": {
"prop-types": "^15.6.1",
"styled-components": "^3.2.3",
"styled-theming": "^2.2.0"
},
"peerDependencies": {
"javascript-terminal": "^1.0.2",
"react": "^15.0.0 || ^16.0.0",
"react-dom": "^15.0.0 || ^16.0.0"
},
"files": [
"lib/react-terminal-component.js",
"lib/react-terminal-component.min.js"
]
}