forked from iTwin/itwins-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.87 KB
/
package.json
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
{
"name": "@itwin/itwins-client",
"version": "1.2.1",
"description": "iTwins client for the iTwin platform",
"main": "lib/cjs/itwins-client.js",
"module": "lib/esm/itwins-client.js",
"typings": "lib/cjs/itwins-client",
"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",
"lint": "eslint -f visualstudio \"./src/**/*.ts\" 1>&2",
"lint:fix": "npm run lint -- --fix",
"webpackTests": "webpack --config ./src/test/utils/webpack.config.js 1>&2",
"test": "npm run -s webpackTests && npm run -s test:chrome",
"test:chrome": "certa -r chrome",
"test:electron": "certa -r electron",
"pack": "npm pack"
},
"keywords": [
"Bentley",
"iTwin",
"digital-twin",
"IModelHub",
"project",
"asset"
],
"author": {
"name": "Bentley Systems, Inc.",
"url": "http://www.bentley.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/iTwin/itwins-client"
},
"dependencies": {
"axios": "^1.6.0"
},
"devDependencies": {
"@itwin/build-tools": "^3.0.0",
"@itwin/certa": "^3.0.0",
"@itwin/core-bentley": "^3.0.0",
"@itwin/eslint-plugin": "^3.0.0",
"@itwin/oidc-signin-tool": "~3.6.0",
"@types/chai": "^4.1.4",
"@types/mocha": "^8.2.2",
"@types/node": "14.14.31",
"chai": "^4.1.2",
"dotenv": "^10.0.0",
"dotenv-expand": "^5.1.0",
"eslint": "^7.11.0",
"mocha": "^8.3.2",
"source-map-loader": "^1.0.0",
"typescript": "~4.4.0",
"webpack": "4.42.0",
"webpack-cli": "^4.9.0"
},
"eslintConfig": {
"plugins": [
"@itwin"
],
"extends": "plugin:@itwin/itwinjs-recommended",
"rules": {
"no-duplicate-imports": "off",
"@typescript-eslint/consistent-type-imports": "error"
}
}
}