-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 loc) · 1.62 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
61
62
{
"name": "workspace-integrations",
"version": "0.9.1",
"description": "Webex Workspace Integrations NodeJS SDK",
"author": "Tore Bjolseth <Cisco>",
"license": "ISC",
"main": "lib/index.js",
"types": "lib/types.d.ts",
"homepage": "https://github.com/cisco-ce/workspace-integrations-nodejs#readme",
"keywords": [
"Webex",
"Cisco",
"RoomOS",
"Video",
"Collaboration",
"Workspace Integrations"
],
"repository": {
"type": "git",
"url": "https://github.com/cisco-ce/workspace-integrations-nodejs"
},
"bin": {
"jwt-decode": "./lib/cli.js"
},
"files": [
"lib/**/*"
],
"scripts": {
"format": "prettier --write \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"build": "tsc",
"doc": "typedoc --out docs src/types.ts --readme DOC.md --customCss ./doc.css",
"clean": "tsc --build --clean",
"test": "jest --config jestconfig.json",
"integration-test": "ts-node test/integration"
},
"dependencies": {
"dotenv": "^16.0.3",
"jsonwebtoken": "^9.0.1",
"jwks-rsa": "^3.0.1",
"node-fetch": "^2.6.7",
"npmlog": "^7.0.1",
"url-join-ts": "^1.0.5"
},
"devDependencies": {
"@types/events": "^3.0.0",
"@types/jest": "^29.5.1",
"@types/npmlog": "^4.1.4",
"install-self": "^1.0.0-beta.7",
"jest": "^29.5.0",
"prettier": "^2.8.8",
"require-self": "^0.2.3",
"ts-jest": "^29.1.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typedoc": "^0.24.6",
"typescript": "^5.0.4"
}
}