-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
81 lines (81 loc) · 1.84 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "bns-sdk",
"version": "0.0.13",
"description": "Library for BNS",
"engines": {
"node": ">=8.11.0"
},
"repository": {
"type": "git",
"url": "https://github.com/PortalNetwork/bns-sdk"
},
"main": "index.js",
"scripts": {
"build": "babel src/ -d lib/",
"test": "jest --coverage",
"lint": "eslint src/*"
},
"author": "Phyrex Tsai",
"license": "MIT",
"dependencies": {
"@cityofzion/neon-js": "^4.2.0",
"axios": "^0.18.0",
"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",
"bluebird": "^3.5.3",
"buffer": "^5.1.0",
"eth-ens-namehash": "^2.0.8",
"ethereumjs-abi": "^0.6.5",
"mocha": "^5.0.1",
"quarkchain-web3": "^0.2.2",
"web3": "^0.20.2"
},
"devDependencies": {
"@types/node": "^10.5.2",
"babel-eslint": "^10.0.1",
"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",
"jest": "^23.6.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"
},
"eslintConfig": {
"parser": "babel-eslint",
"env": {
"browser": true,
"node": true,
"es6": true
},
"extends": "eslint:recommended",
"rules": {
"arrow-body-style": [
"warn",
"always"
],
"comma-dangle": [
"warn",
"never"
],
"no-console": 0,
"no-unused-vars": [
"warn"
]
}
}
}