-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.56 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.56 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
{
"name": "bmhelper",
"version": "1.0.0",
"description": "Bondmachine helper tool to manage projects",
"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": "npm run compile && MAKE_JOB_COUNT=4 ./node_modules/.bin/pkg -t node18-linuxstatic -C Brotli package.json",
"build-macos": "MAKE_JOB_COUNT=4 ./node_modules/.bin/pkg -t darwin -C Brotli package.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/BondMachineHQ/bmhelper.git"
},
"dependencies": {
"@types/node-localstorage": "^1.3.0",
"axios": "^0.30.0",
"fs": "^0.0.1-security",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"minimist": "^1.2.6",
"node-localstorage": "^2.2.1",
"readline": "^1.3.0",
"socket.io-client": "^3.0.4",
"uuid": "^9.0.0",
"yargs": "^17.1.1-candidate.0"
},
"devDependencies": {
"axios": ">=0.30.0",
"@types/node": "^16.18.13",
"pkg": "^5.3.3",
"typescript": "^3.8.3"
},
"author": "Giulio Bianchini",
"license": "GPL-3.0-or-later",
"pkg": {
"assets": [
"node_modules/**/*.js"
],
"targets": [
"node16-linux-x64"
],
"scripts": "dist/**/*.js",
"outputPath": "pkg_output"
},
"homepage": "http://bondmachine.fisica.unipg.it/"
}