-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 908 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 908 Bytes
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
{
"name": "oidc-server",
"scripts": {
"start": "node build/index.js",
"dev": "export DEBUG=oidc-provider:* && ts-node src/index.ts",
"build": "tsc",
"test": "jest -i",
"prepublish": "yarn run build"
},
"version": "1.0.0",
"main": "index.ts",
"author": "Tokensoft Inc.",
"license": "ISC",
"private": true,
"devDependencies": {
"@types/jest": "^26.0.18",
"jest": "^26.6.3",
"ts-jest": "^26.4.4",
"ts-node": "^9.1.1",
"ts-node-dev": "^1.0.0",
"typescript": "^4.1.2",
"yarn": "^1.22.10"
},
"dependencies": {
"jose": "2",
"oidc-provider": "^6.29.9"
},
"jest": {
"transform": {
".(ts|tsx)": "ts-jest"
},
"testEnvironment": "node",
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
},
"engines": {
"node": ">=14"
}
}