forked from raineorshine/solidity-repl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 864 Bytes
/
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
{
"name": "solidity-repl",
"version": "0.3.2",
"description": "Ethereum Solidity REPL",
"license": "ISC",
"repository": "https://github.com/raineorshine/solidity-repl",
"author": {
"name": "Raine Revere",
"email": "[email protected]",
"url": "http://raine.tech"
},
"engines": {
"node": ">=0.10.0"
},
"bin": {
"solr": "./bin.js"
},
"scripts": {
"lint": "standard",
"test": "mocha",
"watch": "nodemon -x \"npm run lint && npm run test\""
},
"devDependencies": {
"mocha": "^2.5.3",
"nodemon": "^1.9.2",
"standard": "^7.0.1"
},
"dependencies": {
"bignumber.js": "^4.0.2",
"bluebird": "^3.4.1",
"chalk": "^2.1.0",
"eth-new-contract": "^0.3.0",
"ethereumjs-testrpc": "^4.0.1",
"promise.waterfall": "^3.1.4",
"solc": "^0.4.15",
"web3": "^0.17.0-alpha"
}
}