-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.56 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
{
"name": "leanix-js",
"version": "1.0.0",
"description": "Javascript client library for LeanIX",
"author": "Paulo dos Santos <[email protected]>",
"license": "MIT",
"homepage": "https://leanix-public.github.io/leanix-js/",
"repository": {
"type": "git",
"url": "https://github.com/leanix-public/leanix-js.git"
},
"bugs": {
"url": "https://github.com/leanix-public/leanix-js/issues"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"setup": "npm install",
"build": "tsc",
"clean": "shx rm -rf node_modules/ dist/ docs/ leanix-js-*.tgz",
"test-only": "jest",
"pretest": "npm run build",
"test": "npm run test-only",
"typedoc": "typedoc --theme default --out ./docs --exclude \"**/*+(e2e|spec|index|index.d).ts\" --tsconfig ./tsconfig.json ./src",
"posttypedoc": "shx cp .nojekyll docs/.nojekyll"
},
"devDependencies": {
"@types/jest": "^29.5.2",
"@types/jwt-decode": "^3.1.0",
"@types/node": "^20.3.1",
"@types/uuid": "^9.0.2",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"dotenv": "^16.3.1",
"eslint": "^8.43.0",
"eslint-config-standard-with-typescript": "^35.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"shx": "^0.3.4",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typedoc": "^0.24.8",
"typescript": "^5.1.3"
},
"dependencies": {
"axios": "^1.4.0",
"events": "^3.3.0",
"jwt-decode": "^3.1.2",
"querystring": "^0.2.1",
"uuid": "^9.0.0"
}
}