-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 888 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
{
"name": "error-factory",
"version": "0.1.6",
"description": "Generate valid custom error and exception classes for Node.js.",
"main": "index.js",
"scripts": {
"test": "mocha",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha",
"test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly"
},
"repository": {
"type": "git",
"url": "https://github.com/yanickrochon/error-factory.git"
},
"keywords": [
"error",
"exception",
"node"
],
"author": "Yanick Rochon <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/yanickrochon/error-factory/issues"
},
"homepage": "https://github.com/yanickrochon/error-factory",
"dependencies": {
"var-validator": "0.0.3"
},
"devDependencies": {
"istanbul": "^0.3.6",
"mocha": "^2.1.0",
"should": "^5.0.1"
}
}