-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.15 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.15 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
67
68
69
70
71
{
"name": "@itwin/node-cli-authorization",
"version": "2.0.4",
"main": "lib/cjs/index.js",
"types": "lib/cjs/index.d.ts",
"description": "Node.js command-line authorization client for iTwin platform",
"scripts": {
"build": "npm run -s build:cjs",
"build:cjs": "tsc 1>&2 --outDir lib/cjs && npm run copy:assets",
"copy:assets": "cpx src/static/* lib/cjs/static",
"clean": "rimraf lib",
"docs": "RUSHSTACK_FILE_ERROR_BASE_FOLDER='../..' betools docs --includes=../../generated-docs/extract --json=../../generated-docs/auth-clients/node-cli-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\"",
"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/node-cli"
},
"dependencies": {
"@openid/appauth": "^1.3.1",
"node-persist": "^3.1.3",
"open": "^8.3.0",
"username": "^7.0.0"
},
"devDependencies": {
"@itwin/build-tools": "rc",
"@itwin/core-bentley": "rc",
"@itwin/core-common": "rc",
"@itwin/eslint-plugin": "^4.0.2",
"@types/chai-as-promised": "^7.1.1",
"@types/chai": "^4.2.22",
"@types/mocha": "^8.2.3",
"@types/node-persist": "^3.1.3",
"@types/node": "^18.11.5",
"@types/sinon": "^10.0.16",
"chai-as-promised": "^7.1.1",
"chai": "^4.2.2",
"cpx2": "^5.0.0",
"eslint": "^8.56.0",
"mocha": "^10.2.0",
"nyc": "^17.0.0",
"rimraf": "^3.0.2",
"sinon": "^15.2.0",
"source-map-support": "^0.5.9",
"typescript": "~5.6.2"
},
"peerDependencies": {
"@itwin/core-bentley": "^5.0.0"
},
"eslintConfig": {
"plugins": [
"@itwin"
],
"extends": "plugin:@itwin/itwinjs-recommended",
"rules": {
"no-duplicate-imports": "off",
"@typescript-eslint/consistent-type-imports": "error"
}
}
}