-
Notifications
You must be signed in to change notification settings - Fork 40
/
package.json
139 lines (139 loc) · 3.63 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
{
"name": "eth-cli",
"description": "A collection of CLI tools to help with ethereum learning and development.",
"version": "2.0.2",
"contributors": [
"Fernando Greco",
"Franco Victorio",
"Gerardo Nardelli",
"Lisandro Corbalan",
"Mariano Agüero",
"Pablo Fullana"
],
"bin": {
"eth": "./bin/run"
},
"bugs": "https://github.com/protofire/eth-cli/issues",
"dependencies": {
"@ethersproject/abi": "^5.0.0-beta.139",
"@oclif/command": "^1",
"@oclif/config": "^1",
"@oclif/plugin-help": "^2",
"big.js": "^5.2.2",
"chalk": "^2.4.2",
"cli-ux": "^5.2.1",
"conf": "^5.0.0",
"ethereumjs-util": "^6.1.0",
"get-stdin": "^7.0.0",
"lodash": "^4.17.15",
"node-fetch": "^2.6.0",
"ora": "^3.4.0",
"repl.history": "^0.1.4",
"rlp": "^2.2.3",
"tslib": "^1",
"web3": "1.2.1",
"web3-eth-accounts": "1.2.1",
"web3-providers-http": "1.2.1"
},
"devDependencies": {
"@oclif/dev-cli": "^1",
"@oclif/tslint": "^3",
"@types/big.js": "^4.0.5",
"@types/chai": "^4",
"@types/cli-table": "^0.3.0",
"@types/jest": "^24.0.11",
"@types/lodash": "^4.14.136",
"@types/node": "^12.0.7",
"@types/node-fetch": "^2.5.0",
"@types/web3": "^1.0.19",
"@typescript-eslint/eslint-plugin": "^2.4.0",
"@typescript-eslint/parser": "^2.4.0",
"chai": "^4",
"doctoc": "^1.4.0",
"eslint": "^6.5.1",
"eslint-config-prettier": "^6.4.0",
"eslint-plugin-implicit-dependencies": "^1.0.4",
"eslint-plugin-oclif": "^0.1.0",
"get-stream": "^5.1.0",
"husky": "^3.0.4",
"jest": "^24.7.1",
"jest-watch-typeahead": "^0.4.0",
"nyc": "^14.1.1",
"prettier": "^1.16.4",
"shelljs": "^0.8.3",
"strip-ansi": "^5.2.0",
"ts-jest": "^24.0.2",
"ts-node": "^8",
"typescript": "^3.3"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/npm-shrinkwrap.json",
"/oclif.manifest.json",
"/lib/**/*"
],
"homepage": "https://github.com/protofire/eth-cli#readme",
"husky": {
"hooks": {
"pre-commit": "npm run lint && npm run build",
"pre-push": "npm test"
}
},
"keywords": [
"ethereum",
"blockchain",
"cli",
"oclif"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"commands": "./lib/commands",
"bin": "eth",
"plugins": [
"@oclif/plugin-help"
]
},
"repository": {
"type": "git",
"url": "https://github.com/protofire/eth-cli"
},
"scripts": {
"build": "tsc -b",
"watch": "tsc -b --watch",
"lint": "npm run eslint:fix && npm run prettier-check",
"eslint:fix": "eslint --fix . --ext .ts",
"postpack": "rm -f oclif.manifest.json",
"prepack": "rm -rf lib tsconfig.tsbuildinfo && tsc -b && oclif-dev manifest && oclif-dev readme",
"prettier": "prettier --write \"**/*.{ts,tsx,json}\"",
"prettier-check": "prettier --check \"**/*.{ts,tsx,json}\"",
"test": "jest --coverage --detectOpenHandles ./test",
"version": "oclif-dev readme && git add README.md",
"clearjest": "jest --clearCache",
"generate-docs": "npm run prepack && node scripts/generate-commands-list.js docs/COMMANDS.md && doctoc docs/COMMANDS.md --title 'This is the full list of commands supported by `eth-cli`.'"
},
"types": "lib/index.d.ts",
"jest": {
"collectCoverageFrom": [
"src/**/*.{js}"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testEnvironment": "node",
"notify": true,
"watchPlugins": [
"jest-watch-typeahead/filename",
"jest-watch-typeahead/testname"
],
"moduleFileExtensions": [
"ts",
"js",
"node",
"json"
]
}
}