-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.07 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.07 KB
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
{
"name": "raft.ts",
"version": "0.0.0",
"description": "",
"main": "build/src/index.js",
"types": "build/src/index.d.ts",
"files": [
"build/src"
],
"license": "Apache-2.0",
"keywords": [],
"scripts": {
"test": "mocha",
"coverage": "nyc mocha",
"check": "gts check",
"clean": "gts clean",
"compile": "tsc -p .",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"posttest": "npm run check"
},
"devDependencies": {
"@types/better-sqlite3": "^5.4.0",
"@types/bl": "^2.1.0",
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/msgpack5": "^3.4.1",
"@types/node": "^10.17.21",
"chai": "^4.2.0",
"gts": "^1.1.2",
"mocha": "^7.1.2",
"nyc": "^15.0.1",
"typescript": "~3.7.0"
},
"dependencies": {
"@types/mqtt": "^2.5.0",
"@types/redis": "^2.8.21",
"better-sqlite3": "^7.0.1",
"bl": "^4.0.2",
"del": "^5.1.0",
"mqtt": "^4.0.1",
"msgpack5": "^4.2.1",
"node-lmdb": "^0.8.0",
"redis": "^3.0.2",
"ts-node": "^8.10.1"
}
}