forked from zackargyle/react-bash
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
78 lines (78 loc) · 2.53 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
{
"name": "react-bash",
"version": "1.6.0",
"description": "A configurable/extendable bash terminal component",
"main": "lib/index.js",
"jsnext:main": "es/index.js",
"scripts": {
"clean": "rimraf lib dist es",
"lint": "eslint src tests",
"start": "cd demo && node server.js",
"test": "cross-env BABEL_ENV=commonjs mocha --compilers js:babel-core/register --reporter spec tests/*.js",
"build:commonjs": "cross-env BABEL_ENV=commonjs babel src --out-dir lib",
"build:es": "cross-env BABEL_ENV=es babel src --out-dir es",
"build:umd": "cross-env BABEL_ENV=commonjs NODE_ENV=development webpack src/index.js dist/react-bash.js",
"build:umd:min": "cross-env BABEL_ENV=commonjs NODE_ENV=production webpack src/index.js dist/react-bash.min.js",
"build:demo": "cross-env BABEL_ENV=commonjs NODE_ENV=production webpack demo/index.js demo/dist/react-bash.js",
"build": "npm run build:commonjs && npm run build:es && npm run build:umd && npm run build:umd:min",
"gh-pages": "npm run build:demo && git add -f demo/dist && git commit -m \"deploy to gh-pages\" && git subtree split --prefix demo -b gh-pages && git push -f origin gh-pages:gh-pages && git branch -D gh-pages",
"prepublish": "npm run clean && npm run lint && npm run build"
},
"authors": [
"Zack Argyle <[email protected]> (https://github.com/zackargyle)"
],
"repository": {
"type": "git",
"url": "https://github.com/zackargyle/react-bash.git"
},
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-core": "^6.6.5",
"babel-loader": "^6.2.2",
"babel-polyfill": "^6.5.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"chai": "^3.2.0",
"cross-env": "^1.0.7",
"enzyme": "^2.3.0",
"eslint": "^2.11.1",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.8.1",
"eslint-plugin-jsx-a11y": "^1.2.3",
"eslint-plugin-react": "^5.1.1",
"mocha": "^2.2.5",
"prop-types": "^15.6.0",
"react": "^15.6.2",
"react-addons-test-utils": "^15.1.0",
"react-dom": "^15.3.0",
"rimraf": "^2.5.2",
"sinon": "^1.17.4",
"webpack": "^1.12.13",
"webpack-dev-server": "^1.14.1"
},
"keywords": [
"react",
"react-component",
"bash",
"terminal",
"shell"
],
"bugs": {
"url": "https://github.com/zackargyle/react-bash/issues"
},
"npmName": "react-bash",
"npmFileMap": [
{
"basePath": "/dist/",
"files": [
"*.js"
]
}
],
"files": [
"dist/",
"es/",
"lib/"
],
"license": "MIT"
}