This repository was archived by the owner on Feb 27, 2025. It is now read-only.
forked from cyrillef/forge.commandline-nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.27 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.27 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
51
52
53
54
55
56
57
58
59
{
"name": "forge.commandline-nodejs",
"version": "3.0.0",
"description": "Node.js command line tool demonstrating the Forge API",
"keywords": [
"Autodesk",
"Forge",
"Model Derivative",
"Viewer",
"Bubble",
"OTG",
"BIM360",
"command line",
"tool"
],
"homepage": "https://forge.autodesk.com/",
"repository": {
"type": "git",
"url": "https://github.com/autodesk-forge/forge.commandline-nodejs"
},
"bugs": {
"url": "https://github.com/autodesk-forge/forge.commandline-nodejs/issues"
},
"author": "Cyrille Fauvel <cyrille@autodesk.com>",
"contributors": [
"Cyrille Fauvel <cyrille@autodesk.com>"
],
"license": "MIT",
"engines": {
"node": ">= 9.5.0",
"npm": ">= 6.0.0"
},
"cacheDirectories": [
"node_modules"
],
"main": "forge.js",
"scripts": {
"test": "./node_modules/mocha/bin/mocha --recursive"
},
"dependencies": {
"archiver": "^2.1.1",
"commander": "^2.20.3",
"ejs": "^2.7.4",
"forge-apis": "^0.7.2",
"mkdirp": "^0.5.1",
"moment": "^2.24.0",
"node-zip": "^1.1.1",
"open": "^7.0.2",
"rimraf": "^2.7.1",
"unirest": "^0.6.0",
"uuid": "^3.4.0"
},
"devDependencies": {
"eslint": "^6.8.0"
},
"prettier": {
"singleQuote": true
}
}