forked from ethanresnick/json-api
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
70 lines (70 loc) · 2.09 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
62
63
64
65
66
67
68
69
70
{
"name": "json-api",
"version": "2.15.7",
"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]"
},
"license": "LGPL-3.0",
"main": "index.js",
"dependencies": {
"babel-runtime": "5.6.17",
"co": "4.5.x",
"content-type": "1.x.x",
"dasherize": "2.0.x",
"flat": "^1.2.1",
"immutable": "^3.7.5",
"jade": "1.11.x",
"lodash": "^3.10.0",
"negotiator": "ethanresnick/negotiator#full-parse-access",
"pluralize": "0.0.11",
"q": "1.4.1",
"qs": "^5.2.0",
"raw-body": "1.3.x",
"url-template": "^2.0.4",
"vary": "^1.0.0"
},
"devDependencies": {
"babel": "5.6.14",
"babel-eslint": "3.x.x",
"chai": "^1.9.2",
"coveralls": "^2.11.4",
"chai-subset": "^1.1.0",
"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.x"
},
"peerDependencies": {
"mongoose": "^4.0.0",
"express": "^4.0.0"
},
"scripts": {
"prepublish": "make compile",
"cover_local": "istanbul cover -x **/lib/** --report lcovonly ./node_modules/mocha/bin/_mocha -- ./build/test/integration/index.js $(find ./build/test/unit -name \"*.js\") > /dev/null",
"cover_ci": "istanbul cover -x **/lib/** --report lcovonly ./node_modules/mocha/bin/_mocha -- -R dot ./build/test/integration/index.js $(find ./build/test/unit -name \"*.js\") && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"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"
]
}