-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathpackage.json
60 lines (60 loc) · 1.44 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
{
"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.3.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": ">= 20.11.0",
"npm": ">= 10.3.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": "^1.20.2",
"clipboard": "^2.0.11",
"connect-multiparty": "^2.2.0",
"crypto": "^1.0.1",
"express": "^4.19.2",
"express-session": "^1.18.0",
"filedrop": "^2.1.0",
"flipclock": "^0.10.5",
"forge-apis": "^0.9.9",
"gen-uid": "^0.0.2",
"jquery.cookie": "^1.4.1",
"serve-favicon": "^2.5.0"
},
"devDependencies": {
"chai": "^5.1.0",
"expect.js": "^0.3.1",
"mocha": "^10.4.0",
"should": "^13.2.3",
"supertest": "^7.0.0"
}
}