@itwin/ecschema-metadata
Version:
ECObjects core concepts in typescript
76 lines • 2.69 kB
JSON
{
"name": "@itwin/ecschema-metadata",
"version": "5.1.1",
"description": "ECObjects core concepts in typescript",
"license": "MIT",
"main": "lib/cjs/ecschema-metadata.js",
"typings": "lib/cjs/ecschema-metadata",
"module": "lib/esm/ecschema-metadata.js",
"repository": {
"type": "git",
"url": "https://github.com/iTwin/itwinjs-core.git",
"directory": "core/ecschema-metadata"
},
"keywords": [
"Bentley",
"iModel",
"iTwin",
"iTwin.js",
"EC"
],
"author": {
"name": "Bentley Systems, Inc.",
"url": "http://www.bentley.com"
},
"devDependencies": {
"@bentley/aec-units-schema": "^1.0.3",
"@bentley/bis-custom-attributes-schema": "^1.0.0",
"@bentley/cif-units-schema": "^1.0.7",
"@bentley/core-custom-attributes-schema": "^1.0.4",
"@bentley/formats-schema": "^1.0.0",
"@bentley/road-rail-units-schema": "^1.0.3",
"@bentley/units-schema": "^1.0.9",
"@itwin/eslint-plugin": "5.2.2-dev.2",
"@types/benchmark": "^2.1.0",
"@types/chai": "4.3.1",
"@types/chai-as-promised": "^7",
"@types/mocha": "^10.0.6",
"@types/node": "~20.17.0",
"@types/sinon": "^17.0.2",
"@xmldom/xmldom": "~0.8.10",
"benchmark": "^2.1.4",
"chai": "^4.3.10",
"chai-as-promised": "^7.1.1",
"cpx2": "^8.0.0",
"eslint": "^9.31.0",
"mocha": "^11.1.0",
"nyc": "^17.1.0",
"rimraf": "^6.0.1",
"sinon": "^17.0.2",
"typescript": "~5.6.2",
"@itwin/build-tools": "5.1.1",
"@itwin/core-quantity": "5.1.1",
"@itwin/core-bentley": "5.1.1"
},
"peerDependencies": {
"@itwin/core-bentley": "5.1.1",
"@itwin/core-quantity": "5.1.1"
},
"nyc": {
"extends": "./node_modules/@itwin/build-tools/.nycrc"
},
"scripts": {
"build": "npm run -s build:cjs && npm run -s build:esm",
"build:cjs": "tsc 1>&2 --outDir lib/cjs && npm run -s copy:test-assets",
"build:esm": "tsc 1>&2 --module ES2022 --outDir lib/esm",
"clean": "rimraf -g lib .rush/temp/package-deps*.json",
"copy:test-assets": "cpx \"./src/test/assets/**/*\" ./lib/cjs/test/assets",
"extract-api": "betools extract-api --entry=ecschema-metadata",
"lint": "eslint \"./src/**/*.ts\" 1>&2",
"lint-deprecation": "eslint --fix -f visualstudio --no-inline-config -c ../../common/config/eslint/eslint.config.deprecation-policy.js \"./src/**/*.ts\"",
"test": "mocha",
"docs": "betools docs --json=../../generated-docs/core/ecschema-metadata/file.json --tsIndexFile=./ecschema-metadata.ts --onlyJson",
"cover": "nyc npm -s test",
"start": "npm run -s lint && npm run -s clean && npm run -s build && npm run -s test & npm run -s cover & npm run -s docs"
}
}