UNPKG

3.5 kBJSONView Raw
1{
2 "name": "eth-cli",
3 "description": "A collection of CLI tools to help with ethereum learning and development.",
4 "version": "1.3.0",
5 "contributors": [
6 "Fernando Greco",
7 "Franco Victorio",
8 "Gerardo Nardelli",
9 "Lisandro Corbalan",
10 "Mariano Agüero",
11 "Pablo Fullana"
12 ],
13 "bin": {
14 "eth": "./bin/run"
15 },
16 "bugs": "https://github.com/protofire/eth-cli/issues",
17 "dependencies": {
18 "@oclif/command": "^1",
19 "@oclif/config": "^1",
20 "@oclif/plugin-help": "^2",
21 "cli-ux": "^5.2.1",
22 "ethereumjs-util": "^6.1.0",
23 "lodash.camelcase": "^4.3.0",
24 "node-fetch": "^2.6.0",
25 "repl.history": "^0.1.4",
26 "rlp": "^2.2.3",
27 "tslib": "^1",
28 "web3": "1.0.0-beta.55",
29 "web3-eth-accounts": "1.0.0-beta.55",
30 "web3-providers": "1.0.0-beta.55"
31 },
32 "devDependencies": {
33 "@commitlint/cli": "^8.1.0",
34 "@commitlint/config-conventional": "^8.0.0",
35 "@commitlint/travis-cli": "^8.1.0",
36 "@oclif/dev-cli": "^1",
37 "@oclif/tslint": "^3",
38 "@semantic-release/changelog": "^3.0.4",
39 "@semantic-release/git": "^7.0.15",
40 "@semantic-release/release-notes-generator": "^7.2.1",
41 "@types/chai": "^4",
42 "@types/cli-table": "^0.3.0",
43 "@types/jest": "^24.0.11",
44 "@types/lodash.camelcase": "^4.3.6",
45 "@types/node": "^12.0.7",
46 "@types/node-fetch": "^2.5.0",
47 "chai": "^4",
48 "globby": "^9.2.0",
49 "husky": "^2.7.0",
50 "jest": "^24.7.1",
51 "jest-watch-typeahead": "^0.3.0",
52 "nyc": "^14.1.1",
53 "prettier": "^1.16.4",
54 "semantic-release": "^15.13.18",
55 "shelljs": "^0.8.3",
56 "ts-jest": "^24.0.2",
57 "ts-node": "^8",
58 "tslint": "^5",
59 "tslint-config-prettier": "^1.18.0",
60 "typescript": "^3.3"
61 },
62 "engines": {
63 "node": ">=8.0.0"
64 },
65 "files": [
66 "/bin",
67 "/npm-shrinkwrap.json",
68 "/oclif.manifest.json",
69 "/lib/**/*"
70 ],
71 "homepage": "https://github.com/protofire/eth-cli#readme",
72 "husky": {
73 "hooks": {
74 "pre-commit": "npm run lint && npm run build",
75 "pre-push": "npm test",
76 "commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
77 }
78 },
79 "keywords": [
80 "ethereum",
81 "blockchain",
82 "cli",
83 "oclif"
84 ],
85 "license": "MIT",
86 "main": "lib/index.js",
87 "oclif": {
88 "commands": "./lib/commands",
89 "bin": "eth",
90 "plugins": [
91 "@oclif/plugin-help"
92 ]
93 },
94 "repository": {
95 "type": "git",
96 "url": "https://github.com/protofire/eth-cli"
97 },
98 "scripts": {
99 "build": "tsc -b",
100 "watch": "tsc -b --watch",
101 "lint": "tslint --project . && npm run prettier-check",
102 "postpack": "rm -f oclif.manifest.json",
103 "prepack": "rm -rf lib tsconfig.tsbuildinfo && tsc -b && oclif-dev manifest && oclif-dev readme",
104 "prettier": "prettier --write \"**/*.{ts,tsx,json}\" --ignore-path .gitignore",
105 "prettier-check": "prettier --check \"**/*.{ts,tsx,json}\" --ignore-path .gitignore",
106 "test": "jest --coverage --detectOpenHandles ./test",
107 "version": "oclif-dev readme && git add README.md",
108 "clearjest": "jest --clearCache",
109 "commitlint-travis": "commitlint-travis"
110 },
111 "types": "lib/index.d.ts",
112 "jest": {
113 "collectCoverageFrom": [
114 "src/**/*.{js}"
115 ],
116 "transform": {
117 "^.+\\.tsx?$": "ts-jest"
118 },
119 "testEnvironment": "node",
120 "notify": true,
121 "watchPlugins": [
122 "jest-watch-typeahead/filename",
123 "jest-watch-typeahead/testname"
124 ],
125 "moduleFileExtensions": [
126 "ts",
127 "js",
128 "node",
129 "json"
130 ]
131 }
132}