-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
31 lines (31 loc) · 856 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
{
"name": "wait-transaction",
"version": "0.2.1",
"description": "A promisified web3.eth.sendTransaction that waits for confirmation.",
"scripts": {
"lint": "standard \"test.js\" \"src/**/*.js\"",
"build": "babel src -d lib",
"test": "mocha --compilers js:babel-register && npm run lint",
"watch": "nodemon -w \"test.js\" -w \"src/**/*.js\" -x \"npm test\""
},
"main": "lib/index.js",
"author": {
"name": "Raine Revere",
"email": "[email protected]",
"url": "https://github.com/raineorshine"
},
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"babel-register": "^6.9.0",
"chai": "^3.5.0",
"mocha": "^2.4.5",
"nodemon": "^1.11.0",
"standard": "^7.1.0"
},
"dependencies": {
"ramda": "^0.21.0",
"web3": "^0.16.0"
}
}