-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (33 loc) · 772 Bytes
/
package.json
File metadata and controls
41 lines (33 loc) · 772 Bytes
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
{
"name": "http-error-constructor",
"description": "Constructors for HTTP errors",
"version": "0.1.0",
"author": {
"name": "Dmitry Kirilyuk",
"email": "gk.joker@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/Jokero/http-error-constructor.git"
},
"license": "MIT",
"keywords": [
"http",
"error",
"constructor"
],
"engines": {
"node" : ">=4.0.0"
},
"dependencies": {
"lodash.camelcase": "3.0.1",
"lodash.capitalize": "3.0.0"
},
"devDependencies": {
"mocha": "2.3.4",
"chai": "3.4.1"
},
"scripts": {
"test": "./node_modules/.bin/mocha tests/*.js"
}
}