-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 988 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
36
37
38
39
40
41
42
43
44
45
46
{
"name": "sails-nedb",
"version": "0.0.0",
"description": "neDB adapter for Sails / Waterline",
"license": "MIT",
"main": "./lib/adapter.js",
"scripts": {
"test": "node test/integration/runner -R spec -b",
"lint": "jshint lib/*.js"
},
"repository": "kokujin/sails-nedb",
"keywords": [
"neDB",
"mongoDB",
"orm",
"adapter",
"sails",
"waterline",
"sails.js",
"plugin"
],
"author": {
"name": "kokujin",
"email": ""
},
"engines": {
"node": ">=0.10.0"
},
"jshintConfig": {
"bitwise": true,
"curly": false,
"eqeqeq": false,
"latedef": true,
"shadow": "inner",
"undef": true,
"unused": "vars",
"node": true,
"sub": true
},
"dependencies": {},
"devDependencies": {
"captains-log": "^0.11.11",
"mocha": "^2.3.4",
"waterline-adapter-tests": "^0.10.16"
}
}