-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.75 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.75 KB
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
{
"name": "@itwin/oidc-signin-tool",
"version": "4.4.1",
"description": "OIDC Signin Helper",
"main": "lib/cjs/index.js",
"typings": "lib/cjs/index",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/itwin/auth-clients.git",
"directory": "packages/oidc-signin-tool"
},
"scripts": {
"build": "tsc 1>&2 --outDir lib/cjs",
"clean": "rimraf lib",
"docs": "",
"lint": "eslint -f visualstudio \"./src/**/*.ts\" 1>&2",
"lint:fix": "npm run lint -- --fix",
"test": "mocha \"./lib/cjs/test/**/*.test.js\"",
"test:integration": "playwright test src/test-integration",
"cover": "nyc npm test",
"rebuild": "npm run clean && npm run build",
"postinstall": "npx playwright install chromium"
},
"keywords": [
"Bentley",
"BIM",
"iModel",
"OIDC"
],
"author": {
"name": "Bentley Systems, Inc.",
"url": "http://www.bentley.com"
},
"dependencies": {
"@itwin/certa": "rc",
"@itwin/service-authorization": "workspace:^",
"@playwright/test": "~1.48.2",
"dotenv": "^10.0.0",
"dotenv-expand": "^5.1.0",
"oidc-client-ts": "^3.1.0"
},
"devDependencies": {
"@itwin/build-tools": "rc",
"@itwin/core-bentley": "rc",
"@itwin/core-common": "rc",
"@itwin/eslint-plugin": "^4.0.2",
"@types/chai": "^4.2.22",
"@types/chai-as-promised": "^7.1.1",
"@types/jsonwebtoken": "^9.0.1",
"@types/mocha": "^8.2.3",
"@types/node": "^18.11.5",
"@types/sinon": "^10.0.13",
"chai": "^4.2.2",
"chai-as-promised": "^7.1.1",
"eslint": "^8.56.0",
"mocha": "^10.2.0",
"nyc": "^17.0.0",
"rimraf": "^3.0.2",
"sinon": "15.0.4",
"typescript": "~5.6.2"
},
"peerDependencies": {
"@itwin/core-bentley": "^5.0.0"
}
}