-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.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
{
"name": "sails-hook-api-version-accept",
"version": "0.1.0",
"description": "Sails.js hook that enabled API versioning through the Accept header",
"keywords": [
"sailsjs",
"hook",
"API version",
"mime",
"accept"
],
"dependencies": {
"sails": "1.0.3-2",
"sails-hook-orm": "^2.0.1"
},
"devDependencies": {
"@sailshq/eslint": "^4.19.3",
"mocha": "^5.2.0",
"nodemon": "^1.17.5",
"should": "^13.2.1",
"should-http": "^0.1.1"
},
"scripts": {
"test": "npm run lint && npm run custom-tests && echo 'Done.'",
"test:watch": "./node_modules/.bin/nodemon --exec 'npm run custom-tests || exit 1'",
"lint": "eslint . --max-warnings=0 --report-unused-disable-directives && echo '✔ Your .js files look good.'",
"lint:fix": "eslint . --fix",
"custom-tests": "mocha -R spec"
},
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/tomsaleeba/sails-hook-api-version-accept.git"
},
"author": "Tom Saleeba",
"license": "MIT",
"engines": {
"node": ">=8.10"
},
"sails": {
"isHook": true
}
}