-
Notifications
You must be signed in to change notification settings - Fork 86
/
package.json
53 lines (53 loc) · 1.81 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
{
"name": "forge-apis",
"version": "0.9.10",
"description": "The Forge Platform contains an expanding collection of web service components that can be used with Autodesk cloud-based products or your own technologies. Take advantage of Autodesk’s expertise in design and engineering.",
"license": "Apache-2.0",
"main": "src/index.js",
"engines": {
"node": ">= 10.12.0"
},
"repository": {
"type": "git",
"url": "https://github.com/Autodesk-Forge/forge-api-nodejs-client"
},
"bugs": {
"url": "https://github.com/Autodesk-Forge/forge-api-nodejs-client/issues"
},
"author": "Autodesk Inc.",
"contributors": [
"Cyrille Fauvel <[email protected]>",
"Augusto Goncalves <[email protected]>"
],
"keywords": [
"autodesk",
"autodesk-forge",
"rest",
"restful",
"api"
],
"scripts": {
"test": "node node_modules/mocha/bin/mocha --colors --recursive --timeout 10000 test",
"test-oauth": "node node_modules/mocha/bin/mocha --colors --recursive --timeout 10000 test/auth",
"test-api": "node node_modules/mocha/bin/mocha --colors --recursive --timeout 10000 test/api",
"test-model": "node node_modules/mocha/bin/mocha --colors --recursive --timeout 10000 test/model",
"test-hubs": "node node_modules/mocha/bin/mocha --colors --timeout 10000 test/api/HubsApi.spec",
"test-oss": "node node_modules/mocha/bin/mocha --colors --timeout 10000 test/api/ObjectsApi.spec",
"test-user": "node node_modules/mocha/bin/mocha --colors --timeout 10000 --inspect-brk test/api/UserProfileApi.spec",
"coverage": "nyc npm run test"
},
"dependencies": {
"axios": "^1.6.5",
"jsonwebtoken": "^9.0.2",
"jwks-rsa": "^3.1.0",
"retry-axios": "^3.1.3"
},
"devDependencies": {
"eslint": "^8.42.0",
"expect.js": "^0.3.1",
"mocha": "^10.2.0",
"nock": "^13.4.0",
"nyc": "^15.1.0",
"sinon": "^17.0.1"
}
}