-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 972 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
{
"name": "rigiddb",
"version": "0.11.1",
"description": "Object store with an index and strict schema",
"main": "index.js",
"scripts": {
"test": "npm run lint && npm run run-tests",
"run-tests": "istanbul cover _mocha",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"lint": "eslint index.js test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ilkkao/rigidDB.git"
},
"keywords": [
"object",
"store",
"redis"
],
"author": "Ilkka Oksanen <[email protected]> (http://iao.fi)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ilkkao/rigidDB/issues"
},
"homepage": "https://github.com/ilkkao/rigidDB#readme",
"devDependencies": {
"chai": "^3.4.0",
"coveralls": "^2.0.0",
"eslint": "^3.0.0",
"istanbul": "^0.4.0",
"mocha": "^3.0.0"
},
"dependencies": {
"clone": "2.1.1",
"console.table": "0.7.0",
"debug": "2.2.0",
"ioredis": "3.0.0"
}
}