-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathpackage.json
79 lines (79 loc) · 2.42 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "react-terminal-component",
"version": "1.5.0",
"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/register --colors './test/**/*.spec.js'",
"test:min": "yarn run test --reporter min",
"test:coverage": "nyc yarn run test",
"storybook": "start-storybook -p 6006",
"artifact:test-coverage": "nyc --reporter=html yarn run test",
"artifact:storybook": "build-storybook -c .storybook -o .storybook_output",
"build-storybook": "build-storybook"
},
"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": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/register": "^7.4.4",
"@storybook/addon-actions": "^5.1.9",
"@storybook/addon-links": "^5.1.9",
"@storybook/addons": "^5.1.9",
"@storybook/react": "^5.1.9",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.0.6",
"babel-plugin-add-module-exports": "^1.0.2",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"chai": "^4.2.0",
"cross-env": "^5.2.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"eslint": "^5.16.0",
"eslint-loader": "^2.1.2",
"eslint-plugin-react": "^7.13.0",
"mocha": "^6.1.4",
"nyc": "^14.1.1",
"styled-components": "^5.2.1",
"webpack": "^4.35.0",
"webpack-cli": "^3.3.4",
"yargs": "^13.2.4"
},
"dependencies": {
"javascript-terminal": "^1.0.3",
"prop-types": "^15.7.2"
},
"peerDependencies": {
"react": "^15.0.0 || ^16.0.0",
"react-dom": "^15.0.0 || ^16.0.0",
"styled-components": "^5.0.0"
},
"files": [
"lib/react-terminal-component.js",
"lib/react-terminal-component.min.js"
]
}