-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 2.27 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 2.27 KB
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
{
"name": "bis-schemas",
"//private": "NOTE: This root package is never published",
"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",
"testSchemaUpgrade": "mocha tools/SchemaValidation/test/schemaUpgrade.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": "5.5.2",
"@itwin/ecschema-locaters": "5.5.2",
"@itwin/ecschema-metadata": "5.5.2",
"@itwin/core-backend": "5.5.2",
"@bentley/schema-validator": "1.0.4",
"@bentley/imodel-schema-validator": "1.0.4",
"@bentley/schema-comparer": "1.0.4",
"@itwin/core-bentley": "5.5.2",
"@types/chai": "4.3.1",
"@types/mocha": "^10.0.6",
"chai": "^4.3.10",
"chai-as-promised": "^7.1.1",
"chalk": "^3.0.0",
"mocha": "^11.1.0",
"proxyquire": "^2.1.3",
"sinon": "^17.0.2",
"ts-node": "^8.10.2",
"typescript": "~5.6.2"
}
}