-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
43 lines (43 loc) · 913 Bytes
/
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
{
"author": "Allan Ebdrup",
"name": "nodeerrors",
"description": "error handling module for node",
"version": "2.1.3",
"repository": {
"type": "git",
"url": "https://github.com/Muscula/nodeerrors"
},
"private": false,
"main": "./lib/nodeerrors.js",
"engines": {
"node": ">=0.10.0"
},
"dependencies": {
"moduleconfig": "^2.0.0",
"underscore": "^1.8.3",
"uuid": "^3.0.1"
},
"scripts": {
"test": "istanbul cover _mocha",
"coveralls": "cat ./coverage/lcov.info | coveralls"
},
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.11.6",
"istanbul": "^0.4.2",
"mocha": "^2.4.5",
"mocha-jshint": "^2.3.1",
"request": "^2.69.0",
"sinon": "^1.17.3",
"sinon-chai": "^2.8.0"
},
"readmeFilename": "readme.md",
"directories": {
"test": "test"
},
"keywords": [
"error",
"handling"
],
"license": "MIT"
}