-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 884 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
{
"name": "test-app",
"private": true,
"version": "0.0.0",
"description": "a Sails application",
"keywords": [],
"dependencies": {
"sails": "^1.5.4",
"sails-hook-orm": "^4.0.0",
"sails-hook-sockets": "^2.0.0",
"@sailshq/lodash": "^3.10.3"
},
"devDependencies": {
"eslint": "5.16.0"
},
"scripts": {
"start": "node app.js",
"test": "npm run lint && npm run custom-tests && echo 'Done.'",
"lint": "./node_modules/eslint/bin/eslint.js . --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/anonymous node/sails user/test-app.git"
},
"author": "anonymous node/sails user",
"license": "",
"engines": {
"node": "^18.15"
}
}