-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
56 lines (56 loc) · 1.41 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
{
"name": "error-cat",
"version": "3.0.0",
"description": "A friendly feline companion that helps you create, track, and report errors.",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"build": "babel --out-dir . lib",
"prepublish": "not-in-install && npm run build || in-install",
"doc": "jsdoc index.js -d doc/; open -a 'Google Chrome' doc/index.html",
"lint": "standard --verbose",
"unit": "lab -v -c -a code",
"test": "npm run lint && npm run unit"
},
"repository": {
"type": "git",
"url": "https://github.com/Runnable/error-cat.git"
},
"jshintConfig": {
"node": true,
"curly": true
},
"keywords": [
"error",
"reporting",
"rollbar",
"express"
],
"author": "Ryan Sandor Richards <[email protected]> (http://www.runnable.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Runnable/error-cat/issues"
},
"homepage": "https://github.com/Runnable/error-cat",
"dependencies": {
"101": "^1.5.0",
"array-find": "^1.0.0",
"boom": "^3.1.2",
"es6-error": "^3.0.1",
"in-publish": "^2.0.0",
"rollbar": "^0.6.2"
},
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-eslint": "^6.1.2",
"babel-preset-es2015": "^6.5.0",
"babel-register": "^6.5.2",
"code": "^2.1.0",
"jsdoc": "^3.3.0-beta3",
"lab": "^10.2.0",
"sinon": "^1.14.1",
"standard": "^7.1.0"
}
}