-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
51 lines (51 loc) · 1.24 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
{
"name": "sails-hook-jsonapi",
"version": "0.0.4",
"description": "A Sails.js hook for creating an API which conforms to JSON API specifications per jsonapi.org",
"main": "index.js",
"sails": {
"isHook": true
},
"scripts": {
"test": "tape tests/*-test.js | tap-spec",
"lint": "eslint **/*.js",
"pretest": "npm run lint",
"postinstall": "cd ./tests/dummy && npm i"
},
"keywords": [
"sails",
"jsonapi",
"sails-hook",
"api",
"ember-data"
],
"author": "Ian VanSchooten",
"license": "MIT",
"bugs": {
"url": "https://github.com/IanVS/sails-hook-jsonapi/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/IanVS/sails-hook-jsonapi"
},
"dependencies": {
"jsonapi-serializer": "^3.3.0",
"lodash": "^4.5.0",
"pluralize": "^1.1.2",
"sails-build-dictionary": "^0.10.1"
},
"devDependencies": {
"ajv": "^4.0.2",
"barrels": "^1.5.0",
"eslint": "^1.10.3",
"eslint-config-ianvs": "^0.0.6",
"eslint-config-standard": "^4.4.0",
"eslint-plugin-promise": "^1.0.8",
"eslint-plugin-standard": "^1.1.0",
"sails": "^0.12.1",
"sails-memory": "^0.10.5",
"tap-spec": "^4.0.2",
"tape": "^4.0.1",
"tape-catch": "^1.0.4"
}
}