-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 3.06 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
{
"name": "@dendra-science/dendra-cli",
"version": "1.2.15",
"description": "Dendra command line interface tool.",
"license": "BSD-2-Clause-FreeBSD",
"author": "J. Scott Smith <scott@newleafsolutionsinc.com>",
"bin": {
"den": "./dist/den.js"
},
"main": "dist/den.js",
"repository": {
"type": "git",
"url": "https://github.com/DendraScience/dendra-cli.git"
},
"scripts": {
"babel": "babel src -d dist",
"build": "npm run lint && npm run clean && npm run babel",
"clean": "rm -rf dist/*",
"lint": "eslint src",
"lint-test": "eslint test",
"pkg": "npm run pkg-output && npm run pkg-archive",
"pkg-archive": "npm run pkg-archive-linux && npm run pkg-archive-macos && npm run pkg-archive-win",
"pkg-archive-linux": "mkdir -p pkg_archive && cp pkg_output/dendra-cli-linux-arm64 pkg_archive/den-arm64 && cp pkg_output/dendra-cli-linux-x64 pkg_archive/den-x64 && zip -Djm pkg_archive/dendra-cli-linux.zip pkg_archive/den-arm64 pkg_archive/den-x64",
"pkg-archive-macos": "mkdir -p pkg_archive && cp pkg_output/dendra-cli-macos-arm64 pkg_archive/den-arm64 && cp pkg_output/dendra-cli-macos-x64 pkg_archive/den-x64 && zip -Djm pkg_archive/dendra-cli-macos.zip pkg_archive/den-arm64 pkg_archive/den-x64",
"pkg-archive-win": "mkdir -p pkg_archive && cp pkg_output/dendra-cli-win-arm64.exe pkg_archive/den-arm64.exe && cp pkg_output/dendra-cli-win-x64.exe pkg_archive/den-x64.exe && zip -Djm pkg_archive/dendra-cli-win.zip pkg_archive/den-arm64.exe pkg_archive/den-x64.exe",
"pkg-output": "pkg . --no-bytecode --public-packages \"*\" --public --out-path ./pkg_output --targets node18-linux-arm64,node18-linux-x64,node18-macos-arm64,node18-macos-x64,node18-win-arm64,node18-win-x64"
},
"engines": {
"node": ">=10.15.1"
},
"dependencies": {
"@dendra-science/task-command": "0.0.2",
"@feathersjs/authentication-client": "^1.0.11",
"@feathersjs/configuration": "^2.0.6",
"@feathersjs/feathers": "^3.3.1",
"@feathersjs/rest-client": "^1.4.7",
"chalk": "^2.4.2",
"check-types": "^8.0.3",
"glob": "^7.2.3",
"inquirer": "^6.5.2",
"jsome": "^2.5.0",
"jsonata": "^1.8.6",
"load-json-file": "^6.2.0",
"localstorage-memory": "^1.0.3",
"moment": "^2.29.4",
"mri": "^1.2.0",
"murmurhash3js": "^3.0.1",
"ora": "^3.4.0",
"progress": "^2.0.3",
"request": "^2.88.2",
"string-length": "^3.1.0",
"table": "^5.4.6",
"write-json-file": "^4.3.0"
},
"devDependencies": {
"@babel/cli": "^7.22.9",
"@babel/core": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"chai": "^4.3.7",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^5.0.0",
"mocha": "^10.2.0",
"prettier": "2.8.0"
},
"pkg": {
"scripts": "dist/**/*.js",
"assets": [
"config/*.json",
"node_modules/config/**/*.*",
"package.json"
]
}
}