forked from iTwin/itwinjs-core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 5.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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "imodeljs-core",
"//private": "NOTE: This 'root' package is private. It is never published",
"private": true,
"description": "iModelJs core components",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://tfs.bentley.com/tfs/ProductLine/Platform%20Technology/_git/imodeljs-core"
},
"scripts": {
"build": "",
"clean": "echo NOTE: use 'rush clean' instead",
"prelint": "echo NOTE: use 'rush lint' instead",
"lint": " ",
"preinstall": "echo ERROR: use 'rush install' instead && exit 1",
"install-imodeljs-addon": "installImodelJsNative",
"publish:bentleyjs-tools": "cd tools/bentley && npm publish",
"publish:bentley": "cd core/bentley && npm publish",
"publish:geometry": "cd core/geometry && npm publish",
"publish:common": "cd core/common && npm publish",
"publish:backend": "cd core/backend && npm publish",
"publish:clients": "cd core/clients && npm publish",
"publish:frontend": "cd core/frontend && npm publish",
"publish:i18n": "cd core/i18n && npm publish",
"publish:dev-cors-proxy-server": "cd tools/dev-cors-proxy-server && npm publish",
"publish:ui-components": "cd ui/components && npm publish",
"publish:ui-core": "cd ui/core && npm publish",
"publish:ui-framework": "cd ui/framework && npm publish",
"publish:ui-ninezone": "cd ui/ninezone && npm publish",
"predocs": "echo NOTE: use 'rush docs' instead",
"docs": " ",
"buildDocSite": "cd tools/bemetalsmith && npm run buildDocSite",
"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",
"test:integration": "npm run test:clients:integration && npm run test:backend:integration && npm run test:frontend:integration && npm run test:example-code-snippets && npm run test:example-code-app",
"test:bentley": "cd core/bentley && npm run test",
"test:geometry": "cd core/geometry && npm run test",
"test:backend:integration": "cd core/backend && npm run test:integration",
"test:backend": "cd core/backend && npm run test",
"test:clients": "cd core/clients && npm run test",
"test:clients:integration": "cd core/clients && npm run test:integration",
"test:backendwebpackformobile": "cd core/backend && npm run webpackformobile",
"test:frontend": "cd test-apps/testbed && node bin/testbed.js --fgrep #integration --invert",
"test:frontend:integration": "cd test-apps/testbed && node bin/testbed.js --fgrep #integration",
"test:frontend:performance": "cd test-apps/testbed && npm run build:perf && node bin/testbed.js --usePerfWriterServer",
"test:example-code-snippets": "cd example-code/snippets && npm run test",
"test:example-code-app": "cd example-code/app && npm run test",
"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",
"testbed": "cd test-apps/testbed && node bin/testbed.js --debug --fgrep #integration --invert",
"testbed:integration": "cd test-apps/testbed && node bin/testbed.js --debug --fgrep #integration",
"cover:geometry": "cd core/geometry && npm run cover",
"cover:backend": "cd core/backend && npm run cover",
"cover:bentley": "cd core/bentley && npm run cover",
"cover:backend:integration": "cd core/backend && npm run cover:integration",
"cover:clients": "cd core/clients && npm run cover",
"cover:testbed": "cd test-apps/testbed && node bin/testbed.js --coveragePattern ../core/frontend/lib/**/*.js",
"module:backend": "cd core/backend && node ../../node_modules/@bentley/bentleyjs-tools/scripts/mastermodule --includes=../common --recursively=true",
"module:frontend": "cd core/frontend && node ../../node_modules/@bentley/bentleyjs-tools/scripts/mastermodule --includes=../common --recursively=true"
},
"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": {}
}