-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
40 lines (40 loc) · 918 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
39
40
{
"name": "solidity-repl",
"version": "0.5.0",
"description": "Ethereum Solidity REPL",
"license": "ISC",
"repository": "https://github.com/raineorshine/solidity-repl",
"author": {
"name": "Raine Revere",
"email": "[email protected]",
"url": "http://clarityofheart.com"
},
"engines": {
"node": ">=6.11.5"
},
"bin": {
"solr": "./bin.js"
},
"scripts": {
"lint": "standard",
"test": "./test/test.sh",
"mocha": "mocha",
"watch": "nodemon -x \"npm run lint && npm run test\""
},
"devDependencies": {
"ganache-cli": "^6.1.5",
"mocha": "^5.2.0",
"nodemon": "^1.17.5",
"standard": "^11.0.1"
},
"dependencies": {
"bignumber.js": "^7.2.1",
"bluebird": "^3.5.1",
"chalk": "^2.4.1",
"eth-new-contract": "^0.3.0",
"promise.waterfall": "^3.2.0",
"solc": "^0.4.24",
"web3": "^0.20.6",
"yargs": "^15.1.0"
}
}