-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
54 lines (54 loc) · 1.33 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
{
"name": "eth-dexcore-js",
"version": "0.1.11",
"main": "dist/main.cjs.js",
"license": "MIT",
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"web": "parcel examples/index.html",
"pretest": "npm run build",
"lint": "eslint --fix --ext .js src/"
},
"dependencies": {
"@babel/polyfill": "^7.4.4",
"bignumber.js": "^8.1.1",
"bip39": "^3.0.1",
"ethereumjs-tx": "^1.3.7",
"ethereumjs-wallet": "^0.6.3",
"ethjs-ens": "^2.0.1",
"isomorphic-fetch": "^2.2.1",
"lodash": "^4.17.11",
"rollup-plugin-babel": "^4.3.2",
"web3": "^1.0.0-beta.54",
"web3-provider-engine": "^15.0.0"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-prettier": "^2.6.1",
"pre-commit": "^1.2.2",
"rollup": "^0.60.0"
},
"files": [
"dist"
],
"pre-commit": [
"build"
],
"keywords": [
"eth core",
"ethereum"
],
"author": "Parminder Klair",
"bugs": {
"url": "https://github.com/dexlab-io/eth-core-js/issues"
},
"homepage": "https://github.com/dexlab-io/eth-core-js"
}