-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.06 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
{
"name": "bignumberify",
"version": "0.0.7",
"description": "A parser to correctly recreate BigNumber items in a JSON",
"homepage": "https://github.com/sullof/bignumberify#readme",
"bugs": {
"url": "https://github.com/sullof/bignumberify/issues"
},
"license": "MIT",
"author": "Francesco Sullo <[email protected]>",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/sullof/bignumberify.git"
},
"scripts": {
"test-only": "cross-env NODE_ENV=test ./node_modules/.bin/mocha test/*.test.js --exit",
"test": "cross-env NODE_ENV=test nyc --reporter=lcov --reporter=text ./node_modules/.bin/_mocha test/*.test.js --exit",
"posttest": "nyc check-coverage --statements 90 --branches 80 --functions 85 --lines 90",
"lint": "npx prettier --write ."
},
"dependencies": {
"ethers": "^5.7.2"
},
"devDependencies": {
"chai": "^4.3.4",
"cross-env": "^7.0.3",
"eslint": "^8.29.0",
"eslint-plugin-node": "^11.1.0",
"mocha": "^9.1.2",
"nyc": "^15.1.0",
"prettier": "2.5.1"
}
}