-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
127 lines (127 loc) · 3.35 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
{
"name": "@proton/cli",
"description": "Proton CLI",
"version": "0.1.89",
"author": "Syed Jafri @jafri",
"bin": {
"proton": "./bin/run"
},
"bugs": "https://github.com/ProtonProtocol/proton-cli/issues",
"files": [
"/bin",
"/lib",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/ProtonProtocol/proton-cli",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"commands": "./lib/commands",
"bin": "proton",
"plugins": [
"@oclif/plugin-help"
],
"flexibleTaxonomy": true,
"hooks": {
"command_incomplete": "./lib/hooks/command_incomplete.js"
},
"topics": {
"generate": {
"description": "Tools to generate smart contracts"
}
}
},
"repository": "ProtonProtocol/proton-cli",
"scripts": {
"build": "npm run prepack && npm run postpack",
"postpack": "rm -f oclif.manifest.json",
"posttest": "eslint . --ext .ts --config .eslintrc",
"prepack": "rm -rf lib && tsc -b && npx oclif manifest && npx oclif readme && shx cp -r src/templates lib",
"testbase": "nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"",
"test": "npm run testbase -- \"test/**/*.test.ts\"",
"testsome": "nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\" --exclude \"**/boilerplate.test.ts\"",
"version": "npx oclif readme && git add README.md"
},
"types": "lib/index.d.ts",
"dependencies": {
"@bloks/numbers": "^26.1.9",
"@greymass/eosio": "^0.5.5",
"@inquirer/input": "^0.0.18-alpha.0",
"@oclif/command": "^1.8.16",
"@oclif/config": "^1.18.3",
"@oclif/core": "^1.7.0",
"@oclif/plugin-help": "^3",
"@proton/api": "^26.4.0",
"@proton/js": "^27.5.1",
"@proton/light-api": "^3.3.1",
"@proton/link": "^4.1.10",
"@proton/mnemonic": "^0.5.0",
"@proton/signing-request": "^4.1.10",
"@proton/wrap-constants": "^0.2.69",
"bignumber.js": "^9.0.2",
"colors": "^1.4.0",
"conf": "^10.1.2",
"ejs": "^3.1.6",
"elliptic": "^6.5.4",
"inquirer": "^8.2.2",
"isomorphic-git": "^1.8.0",
"lodash.isequal": "^4.5.0",
"open": "^8.4.0",
"pako": "^2.0.4",
"qrcode": "^1.5.0",
"rimraf": "^3.0.2",
"shelljs": "^0.8.5",
"text-encoding-shim": "^1.0.5",
"ts-dedent": "^2.2.0",
"ts-morph": "^14.0.0",
"typescript": "^4.6",
"uuid": "^8.3.2",
"ws": "^8.5.0"
},
"devDependencies": {
"@oclif/test": "^1",
"@types/chai": "^4.2.14",
"@types/debug": "^4.1.5",
"@types/ejs": "^3.1.0",
"@types/elliptic": "^6.4.12",
"@types/ini": "^1.3.30",
"@types/inquirer": "^8.2.1",
"@types/lodash.isequal": "^4.5.6",
"@types/mocha": "^9.1.0",
"@types/node": "^14",
"@types/pako": "^1.0.3",
"@types/rimraf": "^3.0.0",
"@types/shelljs": "^0.8.11",
"@types/uuid": "^8.3.4",
"@types/ws": "^8.5.3",
"chai": "^4",
"eslint": "^7.0",
"eslint-config-oclif": "^4.0",
"eslint-config-oclif-typescript": "^1.0.2",
"globby": "^10",
"ini": "^2.0.0",
"mocha": "^9.2.2",
"nyc": "^15.1.0",
"oclif": "^3.0.0",
"rxjs": "^7.5.5",
"shx": "^0.3.4",
"ts-node": "^8",
"tslib": "^1"
},
"overrides": {
"@oclif/core": {
"ejs": {
"jake": {
"async": "3.2.3"
}
}
}
},
"engines": {
"node": ">=14.0.0"
}
}