-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
55 lines (55 loc) · 1.36 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": "modinha-redis",
"version": "0.1.0",
"description": "Redis persistence mixins for Modinha models",
"author": {
"name": "Christian Smith",
"email": "[email protected]",
"url": "http://anvil.io"
},
"contributors": [
{
"name": "Vartan Simonian",
"email": "[email protected]",
"url": "http://vsimonian.github.io/"
}
],
"main": "lib/RedisDocument.js",
"scripts": {
"test": "mocha test && eslint . && echo Code looks good!",
"lint": "eslint . && echo Code looks good!",
"test-watch": "mocha test --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/anvilresearch/modinha-redis.git"
},
"license": "MIT",
"engines": {
"node": ">=6.11.2"
},
"devDependencies": {
"chai": "^4.1.1",
"coffee-script": "^1.12.7",
"eslint": "^4.4.1",
"eslint-config-standard": "^10.2.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-node": "^5.1.1",
"eslint-plugin-promise": "^3.5.0",
"eslint-plugin-standard": "^3.0.1",
"faker": "^4.1.0",
"grunt": "~1.0.1",
"grunt-release": "^0.14.0",
"mocha": "^3.5.0",
"sinon": "^2.1.0",
"sinon-chai": "^2.12.0"
},
"dependencies": {
"async": "^2.5.0",
"ioredis": "^3.1.4",
"modinha": "^0.1.0"
},
"bugs": {
"url": "https://github.com/anvilresearch/modinha-redis/issues"
}
}