-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
42 lines (42 loc) · 1.1 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
{
"name": "sails-json-api-blueprints",
"version": "0.16.1",
"description": "Blueprints to turn a Sails.js API into a JSON API",
"main": "index.js",
"scripts": {
"test": "npm run-script test-unit && npm run-script test-jsonapi",
"test-jsonapi": "cd tests/dummy ; npm test",
"test-unit": "mocha tests/unit/**/*.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dynamiccast/sails-json-api-blueprints.git"
},
"keywords": [
"sails.js",
"blueprints",
"json-api",
"ember.js"
],
"author": "Olivier Berthonneau <berthonneau.olivier@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dynamiccast/sails-json-api-blueprints/issues"
},
"homepage": "https://github.com/dynamiccast/sails-json-api-blueprints#readme",
"dependencies": {
"json-api-serializer": "1.1.2",
"jsonapi-validator": "^2.0.0",
"lodash": "^4.13.1",
"pluralize": "^2.0.0",
"util": "^0.10.3"
},
"sails": {
"isHook": true
},
"devDependencies": {
"chai": "^3.5.0",
"jsonapi-validator": "1.0.1",
"mocha": "2.4.5"
}
}