forked from Konnektid/konnektid-react-status
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.44 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
{
"name": "react-http-status",
"version": "0.0.8",
"description": "Set the HTTP status code from inside React components",
"author": "Tijn Kersjes <[email protected]>",
"contributors": [
"Simone Potenza <[email protected]>"
],
"main": "dist/index.js",
"scripts": {
"clean": "rm -rf dist",
"build": "babel src --ignore __test__ --out-dir dist",
"watch": "babel src --ignore __test__ --watch --out-dir dist",
"test": "babel-node node_modules/.bin/babel-istanbul cover --root src/ --include-all-sources _mocha -- --recursive $(find src -name __test__ -not -path '*/node_modules/*')",
"check-coverage": "babel-istanbul check-coverage --statements 80 --branches 70 --functions 60",
"prepublish": "yarn run test && yarn run clean && yarn run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rewop/react-http-status.git"
},
"bugs": {
"url": "https://github.com/rewop/react-http-status/issues"
},
"homepage": "https://github.com/rewop/react-http-status#readme",
"license": "MIT",
"dependencies": {
"babel-cli": "^6.6.5",
"babel-preset-react": "^6.24.1",
"react-side-effect": "^1.0.2"
},
"peerDependencies": {
"react": "^15.0.0"
},
"devDependencies": {
"babel-istanbul": "^0.7.0",
"babel-preset-env": "^1.4.0",
"chai": "^3.3.0",
"mocha": "^2.3.3",
"react": "^15.0.0"
},
"files": [
"LICENSE",
"README.md",
"dist/"
]
}