-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
40 lines (40 loc) · 1 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
{
"name": "truffle-contract-size",
"version": "2.0.1",
"description": "Displays the size of a truffle contracts in kilobytes",
"main": "src/index.js",
"scripts": {
"lint": "eslint .",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/IoBuilders/truffle-contract-size.git"
},
"keywords": [
"solidity",
"truffle",
"size",
"plugin",
"contract",
"buidl"
],
"author": "[email protected]",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/IoBuilders/truffle-contract-size/issues"
},
"homepage": "https://github.com/IoBuilders/truffle-contract-size#readme",
"dependencies": {
"cli-table": "^0.3.1",
"yargs": "^15.3.1"
},
"devDependencies": {
"eslint": "^6.1.0",
"eslint-config-standard": "^13.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0"
}
}