forked from Autodesk-Forge/models.autodesk.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.3 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
{
"name": "models.autodesk.io",
"description": "A Node.js server to create translate 2D/3D models to the Autodesk Viewer format without the need to create a server yourself",
"homepage": "http://around-the-corner.typepad.com/",
"version": "1.2.0",
"repository": {
"type": "git",
"url": "https://github.com/cyrillef/models.autodesk.io"
},
"bugs": {
"url": "https://github.com/cyrillef/models.autodesk.io/issues"
},
"author": "Cyrille Fauvel",
"contributors": [
"Cyrille Fauvel <[email protected]>"
],
"license": "MIT",
"engines": {
"node": ">= 9.5.0",
"npm": ">= 6.2.0"
},
"scripts": {
"start": "node start.js",
"test": "node_modules/.bin/mocha --require test/support/env --reporter spec --bail --check-leaks test/"
},
"keywords": [
"express",
"framework",
"lmv",
"forge",
"autodesk",
"web",
"rest",
"restful",
"router",
"app",
"api"
],
"dependencies": {
"body-parser": "*",
"connect-multiparty": "^2.2.0",
"crypto": "0.0.3",
"express": "*",
"forge-apis": "^0.4.4",
"gen-uid": "*",
"serve-favicon": "*"
},
"devDependencies": {
"chai": "^4.3.3",
"expect.js": "*",
"mocha": "^8.3.0",
"should": "^13.2.3",
"supertest": "^3.3.0"
},
"optionalDependencies": {}
}