-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
82 lines (82 loc) · 1.94 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "casdoor-js-sdk",
"version": "0.0.1",
"description": "Javascript client SDK for Casdoor",
"main": "lib/cjs/index.js",
"typings": "lib/cjs/index.d.ts",
"module": "lib/esm/index.js",
"license": "Apache-2.0",
"scripts": {
"prepack": "run-s build",
"postpack": "run-s clean",
"build": "run-s clean && run-p build:*",
"build:cjs": "tsc -p tsconfig.cjs.json",
"build:esm": "tsc -p tsconfig.esm.json",
"clean": "rimraf lib",
"test": "jest",
"coverage": "jest --coverage",
"semantic-release": "semantic-release"
},
"jest": {
"maxConcurrency": 1,
"maxWorkers": 1,
"testTimeout": 30000,
"testEnvironment": "jsdom",
"transform": {
"^.+\\.(t|j)sx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.2.3",
"@semantic-release/npm": "^7.1.3",
"@semantic-release/release-notes-generator": "^9.0.3",
"@types/jest": "^27.0.2",
"jest": "^27.2.1",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"semantic-release": "19.0.3",
"ts-jest": "^27.0.5",
"typescript": "^4.5.5"
},
"files": [
"lib"
],
"keywords": [
"auth",
"authn",
"authentication",
"sso",
"oauth",
"oidc",
"casbin",
"casdoor"
],
"repository": {
"type": "git",
"url": "https://github.com/casdoor/casdoor-js-sdk.git"
},
"author": {
"name": "Zxilly",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/casdoor/casdoor-js-sdk/issues"
},
"homepage": "https://github.com/casdoor/casdoor-js-sdk",
"dependencies": {
"js-pkce": "^1.3.0",
"jwt-decode": "^4.0.0"
}
}