-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.12 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
{
"name": "@miroculus/sails-redis-schema",
"version": "1.4.1",
"description": "A redis adapter for Sails / Waterline with basic schema support",
"scripts": {
"test": "mocha",
"test:watch": "npx nodemon --exec npm run test",
"posttest": "npm run standard",
"standard": "standard",
"standard:fix": "standard --fix"
},
"repository": {
"type": "git",
"url": "git://github.com/miroculus/sails-redis-schema.git"
},
"keywords": [
"redis",
"hash",
"schema",
"adapter",
"sails",
"sails.js",
"waterline",
"orm",
"database-adapter"
],
"author": "mjlescano",
"license": "MIT",
"dependencies": {
"fast-json-stable-stringify": "2.1.0",
"ioredis": "4.17.3",
"nanoid": "3.1.12"
},
"devDependencies": {
"chai": "4.2.0",
"mocha": "8.1.3",
"nodemon": "2.0.4",
"pre-commit": "1.2.2",
"standard": "12.0.1",
"waterline": "0.13.6"
},
"waterlineAdapter": {
"type": "sails-redis-schema",
"waterlineVersion": "^0.13.0",
"interfaces": [],
"features": []
},
"precommit.silent": false,
"pre-commit": [
"standard"
]
}