forked from ethanresnick/json-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.61 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
57
58
59
60
61
{
"name": "json-api",
"version": "2.4.0",
"description": "A library for constructing JSON-API compliant responses",
"homepage": "https://github.com/ethanresnick/json-api",
"repository": {
"type": "git",
"url": "git://github.com/ethanresnick/json-api.git"
},
"author": {
"name": "Ethan Resnick",
"email": "[email protected]"
},
"main": "index.js",
"dependencies": {
"babel": "5.4.x",
"babel-runtime": "5.4.x",
"co": "4.5.x",
"content-type": "1.x.x",
"dasherize": "ethanresnick/dasherize",
"flat": "^1.2.1",
"jade": "1.5.x",
"negotiator": "ethanresnick/negotiator#full-parse-access",
"pluralize": "0.0.11",
"q": "^1.0.1",
"raw-body": "1.3.x",
"url-template": "^2.0.4"
},
"devDependencies": {
"babel-eslint": "3.x.x",
"chai": "^1.9.2",
"eslint": "0.x.x",
"express": "4.x.x",
"gulp": "^3.8.6",
"istanbul": "0.3.x",
"mocha": "2.2.x",
"mongoose": "4.0.x",
"node-mongoose-fixtures": "^0.2.4",
"sinon": "1.10.2",
"superagent": "^1.2.0"
},
"peerDependencies": {
"mongoose": "4.0.x"
},
"scripts": {
"prepublish": "make compile",
"cover": "istanbul cover -x **/lib/** ./node_modules/mocha/bin/_mocha -- ./build/test/integration/index.js $(find ./build/test/unit -name \"*.js\") > /dev/null",
"test": "./node_modules/mocha/bin/_mocha ./build/test/integration/index.js $(find ./build/test/unit -name \"*.js\")"
},
"bugs": {
"url": "https://github.com/ethanresnick/json-api/issues"
},
"keywords": [
"json-api",
"jsonapi",
"api",
"hypermedia",
"rest",
"restful"
]
}