-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 721 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 721 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
{
"name": "paperwork",
"description": "Lightweight JSON validation for REST APIs.",
"keywords": [
"rest",
"validation",
"json",
"api",
"express"
],
"version": "2.1.1",
"author": "Laurent Perrin <laurent.perrin@gmail.com>",
"main": "./paperwork.js",
"scripts": {
"test": "mocha test"
},
"repository": {
"type": "git",
"url": "https://github.com/lperrin/paperwork"
},
"licenses": [
{
"type": "BSD"
}
],
"dependencies": {
"underscore": "*"
},
"devDependencies": {
"mocha": "^2.0.1",
"node-mocks-http": "^1.2.1",
"should": "*",
"sinon": "^1.12.2"
},
"bugs": {
"url": "https://github.com/lperrin/paperwork/issues"
}
}