-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.94 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.94 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
{
"name": "@itwin/browser-authorization",
"version": "2.0.1",
"description": "Browser authorization client for iTwin platform",
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"typings": "lib/cjs/index",
"scripts": {
"build": "npm run -s build:cjs && npm run -s build:esm",
"build:cjs": "tsc 1>&2 --outDir lib/cjs",
"build:esm": "tsc 1>&2 --module ES2020 --outDir lib/esm",
"clean": "rimraf lib",
"docs": "RUSHSTACK_FILE_ERROR_BASE_FOLDER='../..' betools docs --includes=../../generated-docs/extract --json=../../generated-docs/auth-clients/browser-authorization/file.json --tsIndexFile=./index.ts --onlyJson",
"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/integration-tests",
"test:integration:start-test-app": "vite dev",
"cover": "nyc npm test",
"pack": "npm pack",
"rebuild": "npm run clean && npm run build"
},
"author": {
"name": "Bentley Systems, Inc.",
"url": "http://www.bentley.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/iTwin/auth-clients.git",
"directory": "packages/browser"
},
"dependencies": {
"@itwin/core-common": "^5.0.0",
"oidc-client-ts": "^3.3.0"
},
"devDependencies": {
"@itwin/build-tools": "^5.5.0",
"@itwin/core-bentley": "^5.0.0",
"@itwin/core-common": "^5.0.0",
"@itwin/eslint-plugin": "^6.0.0",
"@playwright/test": "~1.56.1",
"@types/chai": "^4.3.20",
"@types/mocha": "^8.2.3",
"@types/node": "^20.19.1",
"@types/sinon": "^10.0.20",
"chai": "^4.5.0",
"dotenv": "~16.0.3",
"eslint": "^9.11.1",
"mocha": "^10.8.2",
"nyc": "^17.1.0",
"rimraf": "^3.0.2",
"sinon": "^15.2.0",
"typescript": "~5.6.3",
"vite": "^6.3.5"
},
"peerDependencies": {
"@itwin/core-bentley": "^5.0.0"
}
}