-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
49 lines (49 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
{
"name": "nanocurrency-node-template",
"version": "0.0.0",
"private": true,
"scripts": {
"start": "node ./bin/www",
"test": "mocha",
"test-handshake": "node test-ad-hoc/SendHandshakeTest.js",
"test-keepalive": "node test-ad-hoc/SendKeepaliveTest.js",
"test-bulkpull": "node test-ad-hoc/SendBulkPullTest.js",
"coverage": "nyc npm run test",
"macCoverage": "npm run coverage; open coverage/index.html"
},
"dependencies": {
"@types/node": "^12.6.8",
"blakejs": "^1.1.0",
"commander": "^2.20.0",
"date-fns": "^2.16.1",
"debug": "^4.1.1",
"env-paths": "^2.2.0",
"ipaddr.js": "^1.9.1",
"moment": "^2.24.0",
"morgan": "~1.9.1",
"node-lmdb": "^0.7.0",
"sequelize": "^6.3.5",
"tweetnacl-blake2b": "^1.0.1"
},
"devDependencies": {
"@types/mocha": "^5.2.7",
"mocha": "^6.2.0",
"nyc": "^14.1.1",
"source-map-support": "^0.5.12",
"ts-node": "^8.3.0",
"typescript": "^4.1.3"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"exclude": [
"**/*.d.ts"
],
"reporter": [
"html"
],
"all": true
}
}