-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathpackage.json
35 lines (35 loc) · 958 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
35
{
"name": "waterline-schema",
"description": "The core schema builder used in the Waterline ORM.",
"version": "1.0.0",
"dependencies": {
"@sailshq/lodash": "^3.10.2",
"flaverr": "^1.8.1",
"rttc": "^10.0.0-1"
},
"devDependencies": {
"eslint": "3.19.0",
"mocha": "3.0.2"
},
"keywords": [
"mvc",
"sails",
"sailsjs",
"sails.js",
"orm",
"waterline",
"active-record"
],
"repository": "git://github.com/balderdashy/waterline-schema.git",
"homepage": "http://github.com/balderdashy/waterline-schema",
"main": "lib/waterline-schema.js",
"scripts": {
"custom-tests": "NODE_ENV=test node ./node_modules/mocha/bin/mocha test --reporter dot --recursive",
"test": "npm run lint && npm run custom-tests",
"lint": "node ./node_modules/eslint/bin/eslint . --max-warnings=0"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/balderdashy/waterline-schema/issues/new"
}
}