-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 3.65 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "imodeljs-core",
"//private": "NOTE: This 'root' package is private. It is never published",
"private": true,
"description": "iModel.js core components",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/imodeljs/imodeljs"
},
"scripts": {
"build": "echo NOTE: use 'rush build' instead",
"clean": "echo NOTE: use 'rush clean' instead",
"docs": "echo NOTE: use 'rush docs' instead",
"lint": "echo NOTE: use 'rush lint' instead",
"preinstall": "echo ERROR: use 'rush install' instead && exit 1",
"test": "npm run test-no-gui && npm run test:frontend",
"test-no-gui": "npm run test:bentley && npm run test:geometry && npm run test:clients && npm run test:backend && npm run test:example-code-snippets && npm run test:example-code-app && npm run test:ecschema-metadata",
"test-integration": "npm run test:clients-integration && npm run test:clients-backend-integration && npm run test:backend-integration && npm run test:frontend-integration",
"test:bentley": "cd core/bentley && npm test -s",
"test:geometry": "cd core/geometry && npm test -s",
"test:backend-integration": "cd core/backend && npm run test-integration",
"test:backend": "cd core/backend && npm test -s",
"test:clients": "cd core/clients && npm test -s",
"test:clients-integration": "cd core/clients && npm run test-integration",
"test:clients-backend-integration": "cd core/clients-backend && npm run test-integration",
"test:backendwebpackformobile": "cd core/backend && npm run webpackformobile",
"test:frontend": "cd core/frontend && npm test -s",
"test:ecschema-metadata": "cd core/ecschema-metadata && npm test -s",
"test:example-code-snippets": "cd example-code/snippets && npm test -s",
"test:example-code-app": "cd example-code/app && npm test -s",
"test:perf": "cd core/backend && npm run perftest",
"test:presentation": "npm run test:presentation-common && npm run test:presentation-backend && npm run test:presentation-frontend && npm run test:presentation-components && npm run test:presentation-integration",
"test:presentation-common": "cd presentation/common && npm test -s",
"test:presentation-backend": "cd presentation/backend && npm test -s",
"test:presentation-frontend": "cd presentation/frontend && npm test -s",
"test:presentation-components": "cd presentation/components && npm test -s",
"test:presentation-integration": "cd test-apps/presentation-integration-tests && npm test -s",
"test:ui": "npm run test:ui-core && npm run test:ui-components && npm run test:ui-ninezone && npm run test:ui-framework",
"test:ui-components": "cd ui/components && npm test -s",
"test:ui-core": "cd ui/core && npm test -s",
"test:ui-framework": "cd ui/framework && npm test -s",
"test:ui-ninezone": "cd ui/ninezone && npm test -s",
"cover:geometry": "cd core/geometry && npm run cover",
"cover:backend": "cd core/backend && npm run cover",
"cover:backend-integration": "cd core/backend && npm run cover:integration",
"cover:bentley": "cd core/bentley && npm run cover",
"cover:clients": "cd core/clients && npm run cover",
"cover:common": "cd core/common && npm run cover",
"cover:ecschema-metadata": "cd core/ecschema-metadata && npm run cover"
},
"keywords": [
"Bentley",
"BIM",
"iModel"
],
"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": {}
}