-
Notifications
You must be signed in to change notification settings - Fork 279
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.84 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.84 KB
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
{
"name": "@arkecosystem/core-cli",
"version": "3.9.1",
"description": "Core of the ARK Blockchain",
"license": "MIT",
"contributors": [
"Brian Faust <brian@ark.io>"
],
"files": [
"/dist"
],
"main": "dist/index",
"types": "dist/index",
"scripts": {
"ark": "node ./bin/run",
"build": "yarn clean && yarn compile",
"build:watch": "yarn clean && yarn compile -w",
"build:docs": "../../node_modules/typedoc/bin/typedoc --out docs src",
"clean": "rimraf dist",
"compile": "node ../../node_modules/typescript/bin/tsc",
"prepublishOnly": "yarn build"
},
"dependencies": {
"@arkecosystem/core-kernel": "3.9.1",
"@arkecosystem/crypto": "3.9.1",
"@arkecosystem/utils": "1.3.1",
"boxen": "4.2.0",
"cli-table3": "0.6.0",
"dayjs": "1.11.10",
"env-paths": "2.2.0",
"envfile": "5.2.0",
"execa": "3.4.0",
"fast-levenshtein": "2.0.6",
"fs-extra": "8.1.0",
"glob": "7.1.7",
"got": "11.8.5",
"inversify": "5.1.1",
"joi": "17.12.1",
"kleur": "4.1.5",
"latest-version": "5.1.0",
"listr": "0.14.3",
"nodejs-tail": "1.1.1",
"ora": "4.1.1",
"prompts": "2.4.0",
"read-last-lines": "1.8.0",
"reflect-metadata": "0.2.1",
"semver": "7.5.4",
"tar": "7.5.8",
"type-fest": "0.21.3",
"yargs-parser": "21.1.1"
},
"devDependencies": {
"@types/fast-levenshtein": "0.0.2",
"@types/fs-extra": "8.1.2",
"@types/is-ci": "2.0.0",
"@types/listr": "0.14.4",
"@types/semver": "7.5.6",
"@types/yargs-parser": "20.2.1"
},
"engines": {
"node": ">=10.x"
},
"publishConfig": {
"access": "public"
}
}