-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
43 lines (42 loc) · 960 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
41
42
{
"name": "@zilliqa-js/viewblock",
"version": "0.0.5",
"main": "./src/index.js",
"scripts": {
"test": "ava -v",
"lint": "eslint src test",
"cover": "nyc npm run test",
"report": "npm run cover && nyc report --reporter=text-lcov | coveralls"
},
"dependencies": {
"@zilliqa-js/crypto": "^3.3.4",
"node-fetch": "^3.2.3",
"socketcluster-client": "^16.0.4"
},
"devDependencies": {
"ava": "^4.2.0",
"coveralls": "^3.1.1",
"dotenv": "^16.0.0",
"eslint": "^8.14.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-zavatta": "^6.0.3",
"nyc": "^15.1.0",
"prettier": "^2.6.2"
},
"ava": {
"require": [
"dotenv/config"
],
"nodeArguments": [
"--experimental-specifier-resolution=node"
],
"files": [
"test/**/*",
"!test/utils.js"
],
"timeout": "2m"
},
"type": "module",
"author": "ViewBlock <[email protected]>",
"license": "MIT"
}