-
Notifications
You must be signed in to change notification settings - Fork 47
/
package.json
48 lines (48 loc) · 1.13 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
{
"name": "sails-hook-orm",
"version": "4.0.3",
"description": "The ORM hook from Sails core.",
"main": "index.js",
"scripts": {
"test": "npm run lint && npm run custom-tests && echo 'Done.'",
"custom-tests": "node ./node_modules/mocha/bin/mocha test -t 15000 && echo",
"lint": "node ./node_modules/eslint/bin/eslint . --max-warnings=0 && echo '✔ Your code looks good.'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/balderdashy/sails-hook-orm.git"
},
"keywords": [
"waterline",
"orm",
"sails",
"hook",
"sails-hook"
],
"author": "Mike McNeil",
"license": "MIT",
"bugs": {
"url": "https://sailsjs.com/bugs"
},
"homepage": "https://sailsjs.com",
"dependencies": {
"@sailshq/lodash": "^3.10.2",
"async": "2.6.4",
"chalk": "2.3.0",
"flaverr": "^1.8.0",
"parley": "^3.3.2",
"prompt": "1.2.1",
"sails-disk": "^2.0.0",
"waterline": "^0.15.0",
"waterline-utils": "^1.0.0"
},
"sails": {
"isHook": true,
"hookName": "orm"
},
"devDependencies": {
"eslint": "4.11.0",
"mocha": "3.0.2",
"sails": "^1.0.0-5"
}
}