-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
34 lines (34 loc) · 942 Bytes
/
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
{
"name": "foo-api",
"private": true,
"version": "0.0.0",
"description": "a demo Sails application that uses CircleCI for CD",
"keywords": [],
"dependencies": {
"@sailshq/lodash": "^3.10.3",
"async": "2.0.1",
"sails": "^1.0.1",
"sails-hook-orm": "^2.0.0-16",
"sails-hook-sockets": "^1.4.0",
"sails-mongo": "^1.0.0"
},
"devDependencies": {
"@sailshq/eslint": "^4.19.3"
},
"scripts": {
"start": "NODE_ENV=production node app.js",
"test": "npm run lint && npm run custom-tests && echo 'Done.'",
"lint": "eslint . --max-warnings=0 --report-unused-disable-directives && echo '✔ Your .js files look good.'",
"custom-tests": "echo \"(No other custom tests yet.)\" && echo"
},
"main": "app.js",
"repository": {
"type": "git",
"url": "git://github.com/tomsaleeba/foo-api.git"
},
"author": "Tom Saleeba",
"license": "MIT",
"engines": {
"node": ">=8.10"
}
}