-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.14 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
{
"name": "@mainframe/eth",
"description": "Mainframe Ethereum API and utilities",
"version": "0.4.1",
"author": "Mainframe",
"license": "MIT",
"main": "lib/index.js",
"files": [
"lib/*"
],
"scripts": {
"clean": "del-cli lib",
"lint": "eslint 'src/**/*.js'",
"build:js": "babel src --out-dir lib",
"build:flow": "flow-copy-source src lib",
"build": "yarn clean && yarn build:js && yarn build:flow",
"test:types": "flow check",
"test": "yarn lint && yarn test:types"
},
"dependencies": {
"@babel/runtime": "^7.6.0",
"ethers": "^4.0.37",
"web3-eth-abi": "^1.2.1",
"web3-providers": "^1.0.0-beta.55",
"web3-utils": "1.2.1"
},
"devDependencies": {
"@babel/cli": "^7.6.0",
"@babel/core": "^7.6.0",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-transform-runtime": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"@babel/preset-flow": "^7.0.0",
"babel-eslint": "^10.0.3",
"del-cli": "^3.0.0",
"eslint": "^6.3.0",
"eslint-config-mainframe": "^4.0.1",
"flow-bin": "^0.107.0",
"flow-copy-source": "^2.0.7",
"prettier": "^1.18.2"
}
}