forked from hpcc-systems/Visualization
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 3.48 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": "hpcc-js",
"version": "2.16.0",
"description": "HPCC Visualization Framework",
"private": true,
"scripts": {
"install-nohoist": "lerna bootstrap",
"install": "lerna bootstrap --hoist",
"uninstall": "lerna clean && rimraf demos/**/node_modules apps/**/node_modules",
"clean": "lerna run clean",
"stamp": "lerna run stamp",
"stamp-main": "node ./utils/bundle/src/stamp-main.js",
"compile-es6": "lerna run --ignore \"@hpcc-js/test-*\" compile-es6",
"compile-es6-watch": "lerna run --nosort --stream --ignore \"@hpcc-js/test-*\" compile-es6-watch",
"compile-umd": "lerna run --ignore \"@hpcc-js/test-*\" compile-umd",
"build-util": "lerna run --scope \"@hpcc-js/bundle\" build",
"build-shim": "lerna run --scope \"@hpcc-js/*-shim\" build",
"build-loader": "lerna run --scope \"@hpcc-js/loader\" build",
"build-gallery": "lerna run --scope \"@hpcc-js/demo-gallery\" build",
"build-dev": "npm-run-all --parallel build-util build-shim --parallel build-loader compile-umd",
"build-test": "lerna run --scope \"@hpcc-js/test-*\" build",
"build-all": "run-s build compile-umd build-gallery build-test",
"build": "lerna run --ignore \"@hpcc-js/test-*\" --ignore \"@hpcc-js/xxxx-*\" --ignore \"@hpcc-js/demo-*\" build",
"minimize": "lerna run --ignore \"@hpcc-js/test-*\" --ignore \"@hpcc-js/demo-*\" minimize",
"gen-legacy-types": "lerna run --ignore \"@hpcc-js/test-*\" --ignore \"@hpcc-js/demo-*\" gen-legacy-types",
"build-min": "run-s build minimize",
"watch": "tsc --build --watch --verbose",
"lint": "lerna run --no-bail lint",
"test-gallery": "lerna run test --scope \"@hpcc-js/demo-gallery\"",
"test-webpack": "lerna run test --concurrency 1 --scope \"@hpcc-js/test-*\"",
"test": "run-s test-gallery test-webpack",
"test:chrome": "lerna run test:chrome --scope \"@hpcc-js/test-*\"",
"test:firefox": "lerna run test:firefox --scope \"@hpcc-js/test-*\"",
"test:ie": "lerna run test:ie --concurrency 1 --scope \"@hpcc-js/test-*\"",
"publish-clean-lint": "run-p lint clean",
"publish-changed": "lerna changed",
"publish-version": "lerna version --no-git-tag-version --no-push --yes",
"publish-tag": "node ./utils/bundle/src/tag.js",
"publish-commit": "git commit -a -m \"chore(publish): Bump versions and build all\"",
"publish-push": "git push --follow-tags upstream",
"publish-lerna": "lerna publish from-package --yes",
"publish-manual": "run-s lint build minimize gen-legacy-types compile-umd publish-lerna",
"publish-prep": "run-s publish-clean-lint publish-version stamp build-all minimize gen-legacy-types test",
"publish-finalize": "run-s publish-commit publish-lerna",
"publish-gh-pages": "node ./utils/publish-gh-pages.js",
"publish-gh-actions": "npm ci && npm run lint && npm run build && npm run minimize && npm run compile-umd && npm run build-gallery && npm run build-test && npm run test && npm run publish-lerna",
"tag": "run-s publish-version stamp stamp-main publish-commit publish-tag publish-push",
"purge-jsdelivr": "node ./utils/purge-jsdelivr.js",
"dev-start": "ws"
},
"devDependencies": {
"gh-pages": "2.1.1",
"lerna": "3.20.2",
"local-web-server": "3.0.7",
"npm-run-all": "4.1.5",
"rimraf": "2.6.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hpcc-systems/Visualization.git"
},
"author": "HPCC Systems",
"license": "Apache-2.0",
"homepage": "https://github.com/hpcc-systems/Visualization"
}