-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
50 lines (50 loc) · 1.86 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
{
"name": "forge-cli-utils",
"version": "1.3.1",
"description": "Command line tools for Autodesk Forge services.",
"author": "Petr Broz <petr.broz@autodesk.com>",
"license": "MIT",
"keywords": [
"autodesk",
"forge",
"cli"
],
"bin": {
"forge-dm": "src/forge-dm.js",
"forge-da": "src/forge-da.js",
"forge-md": "src/forge-md.js"
},
"scripts": {
"build": "npm run build:win && npm run build:macos && npm run build:linux",
"build:win": "export FORGE_CLI_ARCH=node10-win-x64 && npm run pack && zip -jr bin/forge-cli-utils.$FORGE_CLI_ARCH.zip bin/$FORGE_CLI_ARCH/* && rm -rf bin/$FORGE_CLI_ARCH",
"build:macos": "export FORGE_CLI_ARCH=node10-macos-x64 && npm run pack && zip -jr bin/forge-cli-utils.$FORGE_CLI_ARCH.zip bin/$FORGE_CLI_ARCH/* && rm -rf bin/$FORGE_CLI_ARCH",
"build:linux": "export FORGE_CLI_ARCH=node10-linux-x64 && npm run pack && zip -jr bin/forge-cli-utils.$FORGE_CLI_ARCH.zip bin/$FORGE_CLI_ARCH/* && rm -rf bin/$FORGE_CLI_ARCH",
"pack": "npm run pack:dm && npm run pack:md && npm run pack:da",
"pack:dm": "pkg src/forge-dm.js --targets $FORGE_CLI_ARCH --out-path bin/$FORGE_CLI_ARCH",
"pack:md": "pkg src/forge-md.js --targets $FORGE_CLI_ARCH --out-path bin/$FORGE_CLI_ARCH",
"pack:da": "pkg src/forge-da.js --targets $FORGE_CLI_ARCH --out-path bin/$FORGE_CLI_ARCH"
},
"dependencies": {
"commander": "^2.20.3",
"forge-server-utils": "^8.2.2",
"form-data": "^2.5.1",
"fs-extra": "^8.1.0",
"inquirer": "^6.5.2",
"jszip": "^3.4.0",
"ora": "^4.0.4"
},
"devDependencies": {
"pkg": "^4.4.8"
},
"engines": {
"node": ">=10.15.3"
},
"homepage": "https://petrbroz.github.io/forge-cli-utils/",
"repository": {
"type": "git",
"url": "https://github.com/petrbroz/forge-cli-utils"
},
"bugs": {
"url": "https://github.com/petrbroz/forge-cli-utils/issues"
}
}