@itwin/ecschema2ts 3.0.0-dev.72 → 3.0.0-dev.73

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +17 -17
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@itwin/ecschema2ts",
3
3
  "description": "Command line tools that takes an ECSchema xml file and outputs a typescript module",
4
4
  "license": "MIT",
5
- "version": "3.0.0-dev.72",
5
+ "version": "3.0.0-dev.73",
6
6
  "bin": {
7
7
  "ecschema2ts": "./bin/index.js"
8
8
  },
@@ -23,8 +23,8 @@
23
23
  "url": "http://www.bentley.com"
24
24
  },
25
25
  "devDependencies": {
26
- "@itwin/build-tools": "3.0.0-dev.72",
27
- "@itwin/eslint-plugin": "3.0.0-dev.72",
26
+ "@itwin/build-tools": "3.0.0-dev.73",
27
+ "@itwin/eslint-plugin": "3.0.0-dev.73",
28
28
  "@types/chai": "^4.1.4",
29
29
  "@types/chai-string": "^1.4.1",
30
30
  "@types/fs-extra": "^4.0.7",
@@ -41,16 +41,16 @@
41
41
  "typescript": "~4.4.0"
42
42
  },
43
43
  "dependencies": {
44
- "@bentley/backend-itwin-client": "3.0.0-dev.72",
45
- "@itwin/core-bentley": "3.0.0-dev.72",
46
- "@itwin/ecschema-locaters": "3.0.0-dev.72",
47
- "@itwin/ecschema-metadata": "3.0.0-dev.72",
48
- "@bentley/frontend-authorization-client": "3.0.0-dev.72",
49
- "@itwin/core-geometry": "3.0.0-dev.72",
50
- "@bentley/imodelhub-client": "3.0.0-dev.72",
51
- "@itwin/core-backend": "3.0.0-dev.72",
52
- "@itwin/core-common": "3.0.0-dev.72",
53
- "@bentley/itwin-client": "3.0.0-dev.72",
44
+ "@bentley/backend-itwin-client": "3.0.0-dev.73",
45
+ "@itwin/core-bentley": "3.0.0-dev.73",
46
+ "@itwin/ecschema-locaters": "3.0.0-dev.73",
47
+ "@itwin/ecschema-metadata": "3.0.0-dev.73",
48
+ "@bentley/frontend-authorization-client": "3.0.0-dev.73",
49
+ "@itwin/core-geometry": "3.0.0-dev.73",
50
+ "@bentley/imodelhub-client": "3.0.0-dev.73",
51
+ "@itwin/core-backend": "3.0.0-dev.73",
52
+ "@itwin/core-common": "3.0.0-dev.73",
53
+ "@bentley/itwin-client": "3.0.0-dev.73",
54
54
  "@xmldom/xmldom": "^0.7.0",
55
55
  "chai-string": "^1.5.0",
56
56
  "chalk": "^3.0.0",
@@ -67,15 +67,15 @@
67
67
  "extends": "plugin:@itwin/itwinjs-recommended"
68
68
  },
69
69
  "scripts": {
70
- "compile": "npm run build",
71
- "build": "tsc 1>&2 && npm run copy:test-assets",
70
+ "compile": "npm run -s build",
71
+ "build": "tsc 1>&2 && npm run -s copy:test-assets",
72
72
  "clean": "rimraf lib .rush/temp/package-deps*.json",
73
73
  "copy:test-assets": "cpx \"./src/test/assets/**/*\" ./lib/test/assets",
74
74
  "extract-api": "betools extract-api --entry=ecschema2ts",
75
75
  "lint": "eslint -f visualstudio \"./src/**/*.ts\" 1>&2",
76
76
  "docs": "",
77
77
  "test": "mocha",
78
- "cli:dev": "npm run clean & npm run build & npm link",
79
- "cover": "nyc npm test"
78
+ "cli:dev": "npm run -s clean & npm run -s build & npm link",
79
+ "cover": "nyc npm -s test"
80
80
  }
81
81
  }