-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.26 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
{
"name": "netter-edgestack-cli",
"version": "1.0.0",
"description": "CLI to interact with Netter EdgeStack platform",
"main": "index.js",
"bin": "dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"compile": "rm -f -r ./dist/* && tsc -p ./tsconfig.json",
"start": "node ./dist/index.js",
"build": "MAKE_JOB_COUNT=4 ./node_modules/.bin/pkg -C Brotli package.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nettersrl/cli.git"
},
"dependencies": {
"@types/node-localstorage": "^1.3.0",
"axios": "^0.22.0",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"node-localstorage": "^2.2.1",
"readline": "^1.3.0",
"socket.io-client": "^3.0.4"
},
"devDependencies": {
"@types/node": "^16.10.3",
"pkg": "^5.3.3",
"typescript": "^3.8.3"
},
"author": "Alessandro Bolletta",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/nettersrl/cli/issues"
},
"pkg": {
"assets": [
"node_modules/**/*.js"
],
"targets": [
"node16-linux-x64",
"node16-win-x64",
"node16-macos-x64"
],
"scripts": "dist/**/*.js",
"outputPath": "pkg_output"
},
"homepage": "https://github.com/nettersrl/cli#readme"
}