-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 1.94 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
{
"name": "@everscale-actions/evernode-se",
"version": "0.39.0",
"author": "Everscale Actions",
"license": "Apache-2.0",
"type": "module",
"engines": {
"node": ">=16"
},
"description": "CLI tool to install and manage Ton Node SE without Docker",
"scripts": {
"start": "node ./bin/evernode-se.js start",
"stop": "node ./bin/evernode-se.js stop",
"test": "echo \"No test specified\""
},
"main": "./lib/evernode-se.js",
"bin": {
"evernode-se": "./bin/evernode-se.js"
},
"repository": {
"type": "git",
"url": "https://github.com/everscale-actions/evernode-se.git"
},
"files": [
"bin/**/*",
"lib/**/*",
"LICENSE",
"README.md"
],
"keywords": [
"everscale",
"evernode",
"cli"
],
"bugs": {
"url": "https://github.com/everscale-actions/evernode-se/issues"
},
"homepage": "https://github.com/everscale-actions/evernode-se#readme",
"dependencies": {
"@lifeomic/attempt": "^3.0.3",
"@webantic/nginx-config-parser": "^1.6.1",
"arangojs": "^8.1.0",
"axios": "^1.3.3",
"boxen": "^7.0.1",
"command-line-args": "^5.2.1",
"command-line-usage": "^6.1.3",
"is-running": "^2.1.0",
"json-override": "^0.2.0",
"progress": "^2.0.3",
"resolve-dir": "^1.0.1",
"rimraf": "^4.1.2",
"semver": "^7.3.8",
"tar": "^6.1.13",
"tcp-port-used": "^1.0.2",
"yaml": "^2.2.1"
},
"devDependencies": {
"@types/command-line-args": "^5.2.0",
"@types/command-line-usage": "^5.0.2",
"@types/progress": "^2.0.5",
"@types/semver": "^7.3.13",
"eslint": "^8.34.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-json-format": "^2.0.1",
"eslint-plugin-node": "^11.1.0"
}
}