-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
36 lines (36 loc) · 1.02 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
{
"name": "react-guard",
"version": "0.6.0",
"author": "Sasha Koss <[email protected]>",
"description": "React Guard automagically catches exceptions from React components, extracts useful debug information and prevents White Screen of Death",
"license": "MIT",
"main": "index.js",
"files": [
"index.js",
"naive.js",
"CHANGELOG.md",
"README.md",
"LICENSE.md"
],
"repository": "https://github.com/kossnocorp/react-guard",
"engine": {
"node": ">= 6"
},
"dependencies": {},
"devDependencies": {
"ava": "^0.21.0",
"coveralls": "^2.13.1",
"nyc": "^11.0.3",
"sinon": "^2.4.1",
"snazzy": "^7.0.0",
"standard": "^10.0.2"
},
"scripts": {
"lint": "standard --verbose | snazzy",
"test": "nyc ava test/**/index.js --source '!tmp'",
"test-watch": "npm test -- --watch",
"test-coverage-report": "nyc report --reporter=html",
"test-coverage-coveralls": "nyc report --reporter=text-lcov | coveralls",
"test-performance": "node test/react-15/performance.js"
}
}