-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.75 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
{
"name": "bis-schema-validation",
"//private": "NOTE: This 'root' package is private. It is never published",
"private": true,
"description": "bis schema validation packages",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/iTwin/bis-schema-validation"
},
"scripts": {
"build": "echo NOTE: use 'rush build' instead",
"clean": "echo NOTE: use 'rush clean' instead",
"lint": "echo NOTE: use 'rush lint' instead",
"preinstall": "echo ERROR: use 'rush install' instead && exit 1",
"test": "npm run test:bis-rules && npm run test:schema-validator && npm run test:schema-comparer && npm run test:native-schema-locater",
"test:bis-rules": "cd bis-rules && npm test -s",
"test:schema-validator": "cd schema-validator && npm test -s",
"test:schema-comparer": "cd schema-comparer && npm test -s",
"test:native-schema-locater": "cd native-schema-locater && npm test -s",
"cover:bis-rules": "cd bis-rules && npm run cover",
"cover:schema-validator": "cd schema-validator && npm run cover",
"cover:schema-comparer": "cd schema-comparer && npm run cover",
"cover:native-schema-locater": "cd native-schema-locater && npm run cover",
"validateBisSchemas": "node ./common/scripts/SchemaValidationRunner.js"
},
"keywords": [
"Bentley",
"iModel",
"iModelJs",
"EC"
],
"author": {
"name": "Bentley Systems, Inc.",
"url": "http://www.bentley.com"
},
"//dependencies": "NOTE: dependencies will be empty here and instead specified in each package.",
"dependencies": {},
"//devDependencies": "NOTE: devDependencies will be empty here and instead specified in each package.",
"devDependencies": {
"readdirp": "^3.3.0"
}
}