This repository has been archived by the owner on Jul 7, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
156 lines (156 loc) · 3.7 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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
{
"name": "@arkecosystem/crypto-json-rpc",
"version": "0.2.0",
"description": "A JSON-RPC 2.0 specification compliant server to interact with ARK Cryptography.",
"homepage": "https://github.com/arkecosystem/crypto-json-rpc",
"bugs": {
"url": "https://github.com/arkecosystem/crypto-json-rpc/issues"
},
"repository": {
"type": "git",
"url": "[email protected]:arkecosystem/crypto-json-rpc.git"
},
"license": "MIT",
"author": "Brian Faust <[email protected]>",
"files": [
"/bin",
"/dist",
"/oclif.manifest.json"
],
"main": "dist/index",
"types": "dist/index",
"bin": {
"crypto-json-rpc": "./bin/run"
},
"scripts": {
"crypto-json-rpc": "./bin/run",
"build": "yarn clean && tsc",
"build:watch": "yarn build -w",
"clean": "rimraf .coverage dist tmp",
"format": "yarn lint && yarn prettier",
"lint": "tslint -c tslint.json -p tslint.json 'src/**/*.ts' --fix",
"prepack": "./node_modules/.bin/oclif-dev manifest && npm shrinkwrap",
"postpack": "rm -f oclif.manifest.json",
"prepublishOnly": "yarn build",
"prettier": "prettier --write \"./*.{ts,js,json,md}\" \"./**/*.{ts,js,json,md}\"",
"test": "jest",
"test:watch": "jest --watchAll"
},
"jest": {
"bail": false,
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.ts",
"!src/index.ts",
"!src/cli/**/*.ts",
"!**/node_modules/**"
],
"coverageDirectory": "<rootDir>/.coverage",
"coverageReporters": [
"json",
"lcov",
"text",
"clover",
"html"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"setupFilesAfterEnv": [
"jest-extended"
],
"testEnvironment": "node",
"testMatch": [
"**/*.test.ts"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"verbose": true
},
"dependencies": {
"@arkecosystem/crypto": "^2.5.25",
"@faustbrian/foreman": "^0.1.3",
"@hapi/hapi": "^20.0.0",
"@hapist/json-rpc": "^0.2.0",
"@oclif/command": "^1.5.19",
"@oclif/config": "^1.13.3",
"@oclif/plugin-autocomplete": "^0.2.0",
"@oclif/plugin-commands": "^1.2.3",
"@oclif/plugin-help": "^3.0.0",
"@oclif/plugin-not-found": "^1.2.3",
"@oclif/plugin-plugins": "^1.7.8",
"ajv": "^6.10.2",
"chalk": "^3.0.0",
"clear": "^0.1.0",
"cli-table3": "^0.5.1",
"cli-ux": "^5.3.2",
"dayjs": "^1.8.16",
"execa": "^4.0.0",
"fast-levenshtein": "^3.0.0",
"fs-extra": "^8.1.0",
"got": "^11.0.0",
"latest-version": "^5.1.0",
"lodash.minby": "^4.6.0",
"nodejs-tail": "^1.1.0",
"pino": "^6.0.0",
"pino-pretty": "^3.2.1",
"pretty-bytes": "^5.3.0",
"pretty-ms": "^7.0.0",
"prompts": "^2.2.1",
"read-last-lines": "^1.7.1",
"semver": "^7.0.0"
},
"devDependencies": {
"@faustbrian/tslint": "^0.1.3",
"@oclif/dev-cli": "^1.22.2",
"@types/execa": "^2.0.0",
"@types/fast-levenshtein": "^0.0.1",
"@types/fs-extra": "^8.0.0",
"@types/got": "^9.6.7",
"@types/hapi__hapi": "^20.0.0",
"@types/jest": "^26.0.0",
"@types/lodash.minby": "^4.6.6",
"@types/node": "^12.7.5",
"@types/pino": "^6.0.0",
"@types/prettier": "^2.0.0",
"@types/pretty-bytes": "^5.2.0",
"@types/pretty-ms": "^5.0.1",
"@types/prompts": "^2.4.0",
"@types/rimraf": "^2.0.2",
"@types/semver": "^7.0.0",
"codecov": "^3.6.1",
"jest": "^26.0.0",
"jest-extended": "^0.11.2",
"prettier": "^2.0.0",
"rimraf": "^3.0.0",
"ts-jest": "^26.0.0",
"tslint": "^5.20.0",
"typescript": "^3.6.3"
},
"engines": {
"node": ">=10.x"
},
"oclif": {
"commands": "./dist/cli/commands",
"hooks": {
"init": [
"./dist/cli/hooks/init/update"
],
"command_not_found": [
"./dist/cli/hooks/command_not_found/suggest"
]
},
"bin": "crypto-json-rpc",
"plugins": [
"@oclif/plugin-autocomplete",
"@oclif/plugin-commands",
"@oclif/plugin-help"
]
}
}