-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.57 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
56
57
58
59
60
61
{
"name": "nemesis-db",
"version": "1.2.0",
"description": "A simple graphdb build on redis",
"main": "dist",
"scripts": {
"test": "nyc mocha --opts lib/mocha.opts",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
"lint": "npm run build && npm run tslint",
"tslint": "tslint -p tsconfig.json",
"format": "npm run tslint -- --fix",
"build": "tsc",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/reconbot/nemesis-db.git"
},
"keywords": [
"redis",
"graphdb",
"graph",
"database"
],
"author": "Francis Gulotta <wizard@roborooter.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/reconbot/nemesis-db/issues"
},
"engines": {
"node": ">=8"
},
"homepage": "https://github.com/reconbot/nemesis-db#readme",
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/chai-as-promised": "^7.1.0",
"@types/ioredis": "^3.2.14",
"@types/mocha": "^5.2.2",
"@types/node": "^10.5.8",
"chai": "^4.1.0",
"chai-as-promised": "^7.1.1",
"codecov": "^3.0.4",
"mocha": "^5.2.0",
"nyc": "^12.0.2",
"source-map-support": "^0.5.8",
"streaming-iterables": "^1.1.0",
"ts-node": "^7.0.0",
"tslint": "^5.10.0",
"tslint-eslint-rules": "^5.3.1",
"tslint-immutable": "^4.6.0",
"typescript": "^3.0.1"
},
"dependencies": {
"@types/iltorb": "^2.3.0",
"@types/msgpack5": "^3.4.1",
"iltorb": "^2.4.0",
"ioredis": "^3.2.2",
"msgpack5": "^4.2.0",
"snappy": "^6.0.4"
}
}