-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix bad mass-copy due to awful vscode prettier bug
- Loading branch information
1 parent
319889d
commit 14608be
Showing
2 changed files
with
265 additions
and
78 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,62 +1,56 @@ | ||
{ | ||
"name": "transformer-performance-tests", | ||
"name": "test-app", | ||
"//private": "NOTE: this is a private package that is never published", | ||
"private": true, | ||
"license": "MIT", | ||
"version": "0.1.0", | ||
"scripts": { | ||
"build": "tsc 1>&2", | ||
"build:ci": "npm run -s build", | ||
"clean": "rimraf lib", | ||
"lint": "eslint \"./test/**/*.ts\" 1>&2", | ||
"test": "mocha --delay --timeout 300000 --require ts-node/register test/**/*.test.ts", | ||
"format": "prettier \"./test/**/*.ts\" --write", | ||
"test-mocha": "mocha --delay --timeout 300000 \"./lib/**/TransformerRegression.test.js\"", | ||
"process-reports": "node scripts/process-reports" | ||
"clean": "rimraf lib .rush/temp/package-deps*.json", | ||
"cover": "", | ||
"docs": "", | ||
"lint": "eslint --quiet \"./src/**/*.ts\" 1>&2", | ||
"lint:fix": "eslint --fix --quiet \"./src/**/*.ts\" 1>&2", | ||
"format": "prettier \"./src/**/*.ts\" --write", | ||
"start": "node ./lib/Main.js", | ||
"test": "mocha", | ||
"copy:config": "internal-tools copy-config" | ||
}, | ||
"repository": {}, | ||
"dependencies": { | ||
"@itwin/core-backend": "4.3.5", | ||
"@itwin/core-bentley": "4.3.5", | ||
"@itwin/core-common": "4.3.5", | ||
"@itwin/core-geometry": "4.3.5", | ||
"@itwin/core-quantity": "4.3.5", | ||
"@itwin/imodel-transformer": "workspace:*", | ||
"@itwin/ecschema-metadata": "4.3.5", | ||
"@itwin/imodels-access-backend": "^4.1.4", | ||
"@itwin/imodels-client-authoring": "4.4.0", | ||
"@itwin/imodels-access-backend": "^2.2.1", | ||
"@itwin/imodels-client-authoring": "2.3.0", | ||
"@itwin/node-cli-authorization": "~0.9.0", | ||
"@itwin/perf-tools": "3.7.2", | ||
"@itwin/imodel-transformer": "workspace:*", | ||
"@itwin/imodels-access-backend": "^2.3.0", | ||
"@itwin/imodels-client-authoring": "^2.3.0", | ||
"@itwin/node-cli-authorization": "~0.9.2", | ||
"dotenv": "^10.0.0", | ||
"dotenv-expand": "^5.1.0", | ||
"fs-extra": "^8.1.0", | ||
"yargs": "^16.0.0" | ||
"yargs": "^17.7.2" | ||
}, | ||
"devDependencies": { | ||
"@itwin/build-tools": "4.6.0-dev.27", | ||
"@itwin/eslint-plugin": "^4.0.2", | ||
"@itwin/oidc-signin-tool": "^4.3.2", | ||
"@itwin/itwins-client": "^1.2.1", | ||
"@types/chai": "^4.1.4", | ||
"@types/fs-extra": "^4.0.7", | ||
"@types/mocha": "^8.2.2", | ||
"@types/node": "14.14.31", | ||
"@types/yargs": "^12.0.5", | ||
"chai": "^4.3.6", | ||
"@itwin/eslint-plugin": "4.0.2", | ||
"@itwin/projects-client": "^0.6.0", | ||
"@types/chai": "4.3.1", | ||
"@types/fs-extra": "^4.0.12", | ||
"@types/mocha": "^8.2.3", | ||
"@types/node": "^18.16.14", | ||
"@types/yargs": "17.0.19", | ||
"cross-env": "^5.2.1", | ||
"eslint": "^8.36.0", | ||
"eslint-config-prettier": "^9.1.0", | ||
"prettier": "^3.1.1", | ||
"mocha": "^10.0.0", | ||
"mocha": "^10.2.0", | ||
"rimraf": "^3.0.2", | ||
"ts-node": "^10.7.0", | ||
"typescript": "~5.3.3" | ||
}, | ||
"eslintConfig": { | ||
"plugins": [ | ||
"@itwin" | ||
], | ||
"extends": "plugin:@itwin/itwinjs-recommended", | ||
"parserOptions": { | ||
"project": "./tsconfig.json" | ||
} | ||
"source-map-support": "^0.5.21", | ||
"typescript": "^5.3.3" | ||
} | ||
} |
Oops, something went wrong.