-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
51 lines (51 loc) · 2.17 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
{
"name": "bis-schemas",
"private": true,
"description": "Coordinates schema validation and packaging",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/iTwin/bis-schemas"
},
"scripts": {
"clean": "rimraf lib packageOut",
"updateSchemaInventory": "node ./tools/SchemaInventory/updateSchemaInventory.js",
"validateSchemaInventory": "node ./tools/SchemaInventory/validateSchemaInventory.js",
"validateSchemas": "node ./tools/SchemaValidation/SchemaValidationRunner.js",
"compareSchemas": "node ./tools/SchemaDifference/compareSchemas.js",
"validateJsonSchemas": "node ./tools/packages/schemaJsonValidationRunner.js",
"iModelSchemaValidation": "node ./tools/SchemaValidation/iModelSchemaValidationRunner.js",
"genInventory": "node ./tools/packages/generateInventory.js --BisRoot .",
"genPackages": "node ./tools/packages/generatePackages.js --inventory ./SchemaInventory.json --skipList ./ignoreSchemaList.json --outDir ./packageOut --template ./tools/packages/package.json.template",
"testPkgGen": "mocha tools/packages/test/**.test.js",
"testInvGen": "mocha tools/SchemaInventory/test/**.test.js --timeout=50000",
"testSchemaDifference": "mocha tools/SchemaDifference/test/**.test.js --timeout=50000",
"generateJsonSchemas": "node ./tools/packages/getSchemaJsons.js"
},
"dependencies": {
"fs-extra": "^8.1.0",
"lodash": "^4.17.21",
"readdirp": "^3.3.0",
"yargs": "^17.4.0"
},
"devDependencies": {
"@itwin/build-tools": "^4.10.0-dev.29",
"@itwin/ecschema-locaters": "^4.10.0-dev.29",
"@itwin/ecschema-metadata": "^4.10.0-dev.29",
"@itwin/core-backend": "^4.10.0-dev.29",
"@bentley/schema-validator": "0.2.184",
"@bentley/imodel-schema-validator": "0.2.184",
"@bentley/schema-comparer": "0.2.184",
"@itwin/core-bentley": "^4.10.0-dev.29",
"@types/chai": "4.3.1",
"@types/mocha": "^10.0.6",
"chai": "^4.3.10",
"chai-as-promised": "^7.1.1",
"chalk": "^2.4.1",
"mocha": "^10.2.0",
"proxyquire": "^2.1.3",
"sinon": "^9.0.0",
"ts-node": "^8.10.2",
"typescript": "~5.3.3"
}
}