-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.24 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.24 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
72
73
74
75
{
"name": "@itwin/node-cli-authorization",
"version": "1.0.1",
"type": "module",
"description": "Node.js command-line authorization client for iTwin platform",
"engines": {
"node": ">=16"
},
"scripts": {
"build": "npm run -s build:esm",
"build:esm": "tsc 1>&2 --outDir lib/esm && npm run copy:assets",
"copy:assets": "cpx src/static/* lib/esm/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/esm/test/**/*.test.js\"",
"cover": "nyc npm test",
"pack": "npm pack",
"rebuild": "npm run clean && npm run build"
},
"main": "./lib/esm/index.js",
"exports": "./lib/esm/index.js",
"typings": "./lib/esm/index.d.ts",
"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": {
"@itwin/core-common": "^3.3.0 || ^4.0.0",
"@openid/appauth": "^1.3.1",
"conf": "^11.0.2",
"open": "^8.3.0",
"username": "^5.1.0"
},
"devDependencies": {
"@itwin/build-tools": "^4.0.0-dev.93",
"@itwin/core-bentley": "^3.7.0",
"@itwin/eslint-plugin": "^3.7.0",
"@types/chai-as-promised": "^7.1.1",
"@types/chai": "^4.2.22",
"@types/mocha": "^8.2.3",
"@types/node": "^18.11.5",
"@types/sinon": "^10.0.16",
"chai-as-promised": "^7.1.1",
"chai": "^4.2.22",
"cpx2": "^5.0.0",
"eslint": "^7.32.0",
"mocha": "^8.2.3",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"sinon": "^15.2.0",
"source-map-support": "^0.5.9",
"typescript": "~5.0.2"
},
"peerDependencies": {
"@itwin/core-bentley": "^3.3.0 || ^4.0.0"
},
"eslintConfig": {
"plugins": [
"@itwin"
],
"extends": "plugin:@itwin/itwinjs-recommended",
"rules": {
"no-duplicate-imports": "off",
"@typescript-eslint/consistent-type-imports": "error"
}
}
}