-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
48 lines (48 loc) · 1.01 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
43
44
45
46
47
48
{
"name": "@gnosis.pm/truffle-nice-tools",
"version": "1.3.1",
"description": "A set CLI tools that make truffle development feel more elegant.",
"main": "index.js",
"scripts": {
"test": "mocha --timeout 50000",
"lint": "prettier --config ./.prettierrc.js ./**/*.js"
},
"keywords": [
"Ethereum",
"Truffle",
"Gnosis",
"Utility",
"Tools"
],
"author": {
"name": "Anton Shtylman",
"email": "[email protected]"
},
"engines": {
"node": ">=8"
},
"bin": {
"tnt": "./cli.js"
},
"license": "MIT",
"dependencies": {
"abi-decoder": "^1.2.0",
"chalk": "^2.4.1",
"dotenv": "^6.0.0",
"fs-extra": "^7.0.0",
"lodash": "^4.17.10",
"minimist": "^1.2.0",
"ora": "^3.0.0",
"prepend-file": "^1.3.1",
"walk": "^2.3.14",
"web3": "^1.0.0-beta.35"
},
"devDependencies": {
"chai": "^4.1.2",
"mocha": "^5.2.0",
"prettier": "1.14.2",
"run-with-testrpc": "^0.3.0",
"tmp": "0.0.33",
"truffle": "^4.1.13"
}
}