forked from commissure/redbox-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.74 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
{
"name": "redbox-react",
"description": "A redbox (rsod) component to display your errors.",
"main": "lib/index.js",
"files": [
"dist",
"lib",
"src"
],
"scripts": {
"clean": "rimraf dist lib tmp",
"build:umd": "webpack src/index.js dist/redbox.js",
"build:umd:min": "webpack --config webpack.config.prod.js src/index.js dist/redbox.min.js",
"build:lib": "babel src --out-dir lib",
"build": "npm run build:umd && npm run build:umd:min && npm run build:lib",
"prepublish": "npm run clean && npm run build",
"test": "standard ./src && babel-node ./tests | tap-spec",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "git+https://github.com/commissure/redbox-react.git"
},
"author": "David Pfahler",
"license": "MIT",
"bugs": {
"url": "https://github.com/commissure/redbox-react/issues"
},
"homepage": "https://github.com/commissure/redbox-react",
"keywords": [
"redbox",
"rsod",
"react",
"react-native"
],
"devDependencies": {
"react": "^0.14.0 || ^15.0.0",
"babel-cli": "^6.9.0",
"babel-core": "^6.9.0",
"babel-loader": "^6.2.4",
"babel-plugin-rewire": "^1.0.0-rc-3",
"babel-preset-es2015": "^6.3.3",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.3.13",
"react-addons-test-utils": "^15.0.0",
"rimraf": "^2.5.2",
"semantic-release": "^4.0.0",
"standard": "^7.1.1",
"tap-spec": "^4.0.2",
"tape": "^4.5.1",
"webpack": "^1.13.1"
},
"peerDependencies": {
"react": "^0.14.0 || ^15.0.0",
"react-dom": "^0.14.0 || ^15.0.0"
},
"dependencies": {
"error-stack-parser": "^1.3.6",
"object-assign": "^4.0.1"
}
}