-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1.24 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
{
"name": "bns-client",
"version": "0.1.9",
"description": "bns client",
"main": "./lib/BNS.js",
"scripts": {
"browserify": "babel src/ -d lib/ && browserify -r ./lib/BNS:BNS -o ./dist/BNS.js",
"build": "babel src/ -d lib/",
"test": "nyc --reporter=text mocha --require babel-core/register --timeout 5000"
},
"license": "MIT",
"engines": {
"node": ">=8.11.0"
},
"dependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.26.0",
"buffer": "^5.1.0",
"mocha": "^5.0.1",
"typedarray-to-buffer": "^3.1.5",
"web3": "^1.2.1"
},
"devDependencies": {
"@types/node": "^10.5.2",
"chai": "^4.1.2",
"coveralls": "^3.0.2",
"eslint": "^5.5.0",
"eslint-config-prettier": "^3.0.1",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"flow-bin": "^0.81.0",
"mocha": "^5.2.0",
"node-mocks-http": "^1.7.0",
"nodemon": "^1.18.7",
"nyc": "^13.0.1",
"prettier": "^1.14.3",
"sinon": "^6.3.3",
"supertest": "^3.3.0"
}
}