forked from finos/perspective
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
131 lines (131 loc) · 5.74 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
{
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/finos/perspective"
},
"version": "2.2.1",
"changelog": {
"labels": {
"enhancement": "Added",
"bug": "Fixed",
"internal": "Internal"
}
},
"emscripten": "3.1.32",
"engines": {
"node": ">=14.18.2"
},
"workspaces": [
"tools/perspective-build",
"tools/perspective-test",
"cpp/perspective",
"packages/perspective-esbuild-plugin",
"packages/perspective",
"rust/perspective-viewer",
"packages/perspective-viewer-datagrid",
"packages/perspective-viewer-d3fc",
"packages/perspective-viewer-openlayers",
"packages/perspective-workspace",
"packages/perspective-jupyterlab",
"packages/perspective-webpack-plugin",
"packages/perspective-cli",
"examples/*",
"docs",
"python/perspective"
],
"devDependencies": {
"@fontsource/roboto-mono": "4.5.10",
"@playwright/test": "^1.30.0",
"@types/ws": "^7.2.2",
"auto-changelog": "^2.4.0",
"chalk": "^2.4.2",
"cpy-cli": "^4.2.0",
"css-loader": "^6.7.3",
"decompress": "^4.2.1",
"decompress-unzip": "^4.0.1",
"dotenv": "^8.1.0",
"esbuild": "^0.14.54",
"fs-extra": "^8.1.0",
"glob": "^7.2.0",
"html-webpack-plugin": "^5.1.0",
"husky": "^7.0.4",
"inquirer": "^7.0.0",
"jsdoc-to-markdown": "^8.0.0",
"less": "^4.1.3",
"less-loader": "^7.2.1",
"minimatch": "^5.1.2",
"minimist": "^1.2.0",
"mkdirp": "^0.5.1",
"npm-pack-here": "^1.2.0",
"npm-run-all": "^4.1.3",
"octokit": "^1.7.2",
"prettier": "^2.7.1",
"puppeteer": "^13.1.3",
"rimraf": "^2.6.2",
"sinon": "^7.3.1",
"stoppable": "^1.1.0",
"style-loader": "^3.3.1",
"tar": "^6.1.13",
"term-img": "^4.1.0",
"timezone-mock": "^1.3.6",
"tiny-glob": "^0.2.9",
"ts-loader": "^6.2.0",
"ts-node": "^10.9.1",
"typedoc": "^0.23.0",
"typedoc-plugin-markdown": "^3.14.0",
"typedoc-plugin-no-inherit": "^1.4.0",
"typescript": "4.9.4",
"webpack": "^5.60.0",
"webpack-cli": "^4.7.0",
"webpack-dev-server": "^4.11.1"
},
"scripts": {
"postinstall": "npm-run-all postinstall:emsdk postinstall:playwright",
"postinstall:emsdk": "node scripts/install_emsdk.js",
"postinstall:playwright": "npx playwright install --with-deps",
"build,test": "npm run --silent build && npm run --silent test",
"build,test,bench": "npm run --silent build && npm run --silent test && npm run --silent bench",
"build,bench": "npm run --silent build && npm run --silent bench",
"build_js": "node scripts/build_js.js",
"build": "node scripts/build.js",
"build_python": "node scripts/build_python.js",
"bench": "node scripts/bench.js",
"bench_python": "python3 python/perspective/bench/perspective_benchmark.py",
"ci:full": "git commit --allow-empty -m \"[ci-full]\"",
"ci:skip-python": "git commit --allow-empty -m \"[ci-skip-python]\"",
"ci:include-windows": "git commit --allow-empty -m \"[ci-include-windows]\"",
"ci:skip-cache": "git commit --allow-empty -m \"[ci-skip-cache]\"",
"stresstest_python": "python3 python/perspective/bench/stresstest/main.py",
"_wheel_python": "node scripts/_wheel_python.js",
"_requires_python": "node scripts/_requires_python.js",
"setup": "node scripts/setup.js",
"docs": "node scripts/docs.js",
"test": "node scripts/test.js",
"test:jupyter": "yarn workspace @finos/perspective-jupyterlab test:jupyter",
"test_js": "node scripts/test_js.js",
"test_python": "node scripts/test_python.js",
"clean": "node scripts/clean.js",
"start": "npm run start --workspace",
"prepush": "npm-run-all lint_js lint_python",
"prepare": "husky install",
"lint_js": "npm run lint:js",
"lint:js": "prettier --check \"examples/**/*.js\" \"examples/**/*.tsx\" \"scripts/*.js\" \"rust/**/*.ts\" \"rust/**/*.js\" \"packages/**/*.js\" \"packages/**/*.ts\" \"cpp/**/*.js\"",
"lint_python": "npm run lint:python",
"lint:python": "node scripts/lint_python.js",
"fix:js": "prettier --write \"examples/**/*.js\" \"examples/**/*.tsx\" \"scripts/*.js\" \"rust/**/*.ts\" \"rust/**/*.js\" \"packages/**/*.js\" \"packages/**/*.ts\" \"cpp/**/*.js\"",
"fix:md": "prettier docs/docs/*.md --prose-wrap=always --write",
"fix:yaml": "prettier **/*.yml --write",
"fix:cpp": "node scripts/fix_cpp.js",
"fix:less": "prettier --write **/less/*.less",
"fix:html": "prettier --write **/html/*.html -r",
"fix:json": "prettier --write packages/**/package.json rust/**/package.json examples/**/package.json docs/package.json",
"fix:python": "node scripts/lint_python.js --fix",
"fix": "npm-run-all --silent fix:*",
"version": "node scripts/version.js && python3 python/perspective/scripts/write_version.py && git add python/perspective/perspective/core/_version.py",
"jlab_link": "pip3 install ./python/perspective --no-build-isolation",
"test:ui": "__JUPYTERLAB_PORT__=6538 playwright test --config tools/perspective-test/playwright.config.ts",
"test:ui:headed": "__JUPYTERLAB_PORT__=6538 playwright test --config tools/perspective-test/playwright.config.ts --headed",
"test:ui:debug": "__JUPYTERLAB_PORT__=6538 DEBUG=pw:api playwright test --config tools/perspective-test/playwright.config.ts --headed"
}
}