-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.04 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": "aemon",
"version": "0.0.1",
"description": "Aeternity P2P network monitor",
"author": "",
"license": "MIT",
"type": "module",
"main": "bin/aemon.js",
"bin": {
"aemon": "./bin/aemon.js"
},
"dependencies": {
"@aeternity/aepp-calldata": "github:aeternity/aepp-calldata-js#master",
"geoip-lite": "^1.4.7",
"ip-to-asn": "^1.0.0",
"noise-c.wasm": "^0.4.0",
"prom-client": "^14.2.0",
"rlp": "^3.0.0",
"winston": "^3.9.0",
"yargs": "^17.7.1"
},
"devDependencies": {
"ava": "^5.2.0",
"c8": "^7.13.0",
"eslint": "8.49.0",
"eslint_d": "^12.2.1",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.28.1"
},
"ava": {
"files": [
"tests/**/*"
]
},
"c8": {
"all": true,
"include": [
"src/**/*.js"
],
"temp-directory": "build/.nyc_output"
},
"scripts": {
"build": "echo \"Build OK\"",
"test": "ava --verbose",
"test:watch": "ava --verbose --watch",
"coverage": "c8 ava",
"lint": "eslint src tests"
}
}