generated from etclabscore/pristine
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
79 lines (79 loc) · 1.98 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
{
"name": "openrpc-cli",
"version": "0.3.0",
"description": "a command line tool for OpenRPC",
"author": "Haben Amare <[email protected]>",
"license": "Apache-2.0",
"scripts": {
"build": "tsc -p ./tsconfig.json",
"prepack": "rm -rf lib && tsc -b && oclif-dev manifest && oclif-dev readme",
"postpack": "rm -f oclif.manifest.json",
"lint": "eslint . --ext \"ts, js\" --config .eslintrc.js",
"test": "jest",
"posttest": "yarn run lint"
},
"dependencies": {
"@oclif/command": "^1",
"@oclif/config": "^1",
"@oclif/plugin-help": "^3",
"@open-rpc/client-js": "^1.2.5",
"ajv": "^6.12.2",
"chalk": "^4.0.0",
"cli-highlight": "^2.1.4",
"inquirer": "^7.1.0",
"js-yaml": "^3.13.1",
"json-schema-ref-parser": "^9.0.1",
"tslib": "^1"
},
"devDependencies": {
"@oclif/dev-cli": "^1",
"@oclif/test": "^1",
"@types/inquirer": "^6.5.0",
"@types/jest": "^25.2.2",
"@types/js-yaml": "^3.12.4",
"@types/node": "^10",
"@typescript-eslint/eslint-plugin": "^2.8.0",
"@typescript-eslint/parser": "^2.8.0",
"chai": "^4.2.0",
"eslint": "^6.7.2",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.1",
"globby": "^10",
"jest": "^26.0.1",
"prettier": "1.19.1",
"ts-jest": "^26.0.0",
"ts-node": "^8",
"typescript": "^3.3"
},
"bin": {
"openrpc-cli": "./bin/run"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/lib",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/habenamare/openrpc-cli",
"keywords": [
"oclif"
],
"main": "lib/index.js",
"oclif": {
"commands": "./lib/commands",
"bin": "openrpc-cli",
"plugins": [
"@oclif/plugin-help"
]
},
"repository": "habenamare/openrpc-cli",
"bugs": "https://github.com/habenamare/openrpc-cli/issues",
"types": "lib/index.d.ts",
"pkg": {
"scripts": "./lib/**/*.js"
}
}