forked from raineorshine/eth-new-contract
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.08 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.08 KB
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": "eth-new-contract",
"version": "0.3.0",
"description": "Deploy Solidity contracts straight from source.",
"license": "ISC",
"repository": "https://github.com/raineorshine/eth-new-contract",
"author": {
"name": "Raine Revere",
"email": "raineorshine@gmail.com",
"url": "https://github.com/raineorshine"
},
"engines": {
"node": ">=0.12"
},
"main": "dist/index.js",
"scripts": {
"build": "babel -d dist src",
"test": "mocha --compilers js:babel-register",
"postinstall": "npm run build",
"watch": "nodemon -w src -w test -x \"npm run build && npm test\""
},
"keywords": [
"contract",
"ethereum",
"eth",
"new",
"solidity",
"web3"
],
"devDependencies": {
"babel-register": "^6.9.0",
"bip39": "^2.3.0",
"bluebird": "^3.4.1",
"ethereumjs-testrpc": "^4.0.1",
"mocha": "*"
},
"dependencies": {
"babel-cli": "^6.10.1",
"babel-preset-es2015": "^6.9.0",
"bignumber.js": "^4.0.2",
"lodash.merge": "^4.4.0",
"memoizee": "^0.3.10",
"solc": "^0.4.15",
"web3": "^0.16.0"
}
}