-
Notifications
You must be signed in to change notification settings - Fork 604
/
package.json
55 lines (55 loc) · 1.48 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
52
53
54
55
{
"name": "waterline",
"description": "An ORM for Node.js and the Sails framework",
"version": "0.15.2",
"homepage": "http://waterlinejs.org",
"contributors": [
{
"name": "seerepo",
"github": "https://github.com/balderdashy/waterline/graphs/contributors"
}
],
"dependencies": {
"@sailshq/lodash": "^3.10.2",
"anchor": "^1.2.0",
"async": "2.6.4",
"encrypted-attr": "1.0.6",
"flaverr": "^1.9.2",
"lodash.issafeinteger": "4.0.4",
"parley": "^3.3.2",
"rttc": "^10.0.0-1",
"waterline-schema": "^1.0.0-20",
"waterline-utils": "^1.3.7"
},
"devDependencies": {
"eslint": "4.11.0",
"mocha": "3.0.2"
},
"keywords": [
"mvc",
"orm",
"mysql",
"postgresql",
"redis",
"mongodb",
"active-record",
"waterline",
"sails",
"sails.js"
],
"repository": "git://github.com/balderdashy/waterline.git",
"main": "./lib/waterline",
"scripts": {
"test": "nodever=`node -e \"console.log('\\`node -v\\`'[1]);\"` && if [ $nodever != \"0\" ]; then npm run lint; fi && npm run custom-tests",
"custom-tests": "node ./node_modules/mocha/bin/mocha test --recursive",
"lint": "node ./node_modules/eslint/bin/eslint . --max-warnings=0 --ignore-pattern 'test/'",
"browserify": "rm -rf .dist && mkdir .dist && browserify lib/waterline.js -s Waterline | uglifyjs > .dist/waterline.min.js"
},
"engines": {
"node": ">=4"
},
"bugs": {
"url": "https://sailsjs.com/bugs"
},
"license": "MIT"
}