forked from protofire/eth-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
135 lines (135 loc) · 3.45 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
{
"name": "eth-cli",
"description": "A collection of CLI tools to help with ethereum learning and development.",
"version": "1.3.0",
"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": {
"@oclif/command": "^1",
"@oclif/config": "^1",
"@oclif/plugin-help": "^2",
"chalk": "^2.4.2",
"cli-ux": "^5.2.1",
"conf": "^5.0.0",
"ethereumjs-util": "^6.1.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": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.0.0",
"@commitlint/travis-cli": "^8.1.0",
"@oclif/dev-cli": "^1",
"@oclif/tslint": "^3",
"@semantic-release/changelog": "^3.0.4",
"@semantic-release/git": "^7.0.15",
"@semantic-release/release-notes-generator": "^7.2.1",
"@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",
"chai": "^4",
"husky": "^3.0.4",
"jest": "^24.7.1",
"jest-watch-typeahead": "^0.4.0",
"nyc": "^14.1.1",
"prettier": "^1.16.4",
"semantic-release": "^15.13.18",
"shelljs": "^0.8.3",
"ts-jest": "^24.0.2",
"ts-node": "^8",
"tslint": "^5",
"tslint-config-prettier": "^1.18.0",
"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",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"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": "tslint --project . && npm run prettier-check",
"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}\" --ignore-path .gitignore",
"prettier-check": "prettier --check \"**/*.{ts,tsx,json}\" --ignore-path .gitignore",
"test": "jest --coverage --detectOpenHandles ./test",
"version": "oclif-dev readme && git add README.md",
"clearjest": "jest --clearCache",
"commitlint-travis": "commitlint-travis"
},
"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"
]
}
}