forked from finos/perspective
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (97 loc) · 3.81 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
{
"private": true,
"workspaces": [
"packages/*",
"examples/*",
"docs"
],
"devDependencies": {
"@apache-arrow/es5-esm": "0.4.0",
"@babel/cli": "^7.2.3",
"@babel/core": "^7.1.0",
"@babel/plugin-proposal-decorators": "^7.1.2",
"@babel/plugin-transform-for-of": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.1.5",
"babel-eslint": "^8.2.3",
"babel-jest": "^24.5.0",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-transform-custom-element-classes": "^0.1.0",
"babel-polyfill": "^6.26.0",
"chalk": "^2.4.2",
"codemirror": "^5.30.0",
"codemirror-javascript": "^0.2.0",
"cpx": "^1.5.0",
"eslint": "^4.19.1",
"eslint-config-prettier": "^3.0.1",
"eslint-plugin-prettier": "^2.6.2",
"graceful-fs": "https://github.com/mekwall/node-graceful-fs.git#patch-1",
"html-loader-jest": "^0.2.1",
"jest": "^24.5.0",
"js-beautify": "^1.8.6",
"jsdoc": "3.5.5",
"jsdoc-babel": "^0.5.0",
"jsdoc-to-markdown": "^4.0.1",
"lerna": "^2.11.0",
"mini-css-extract-plugin": "^0.6.0",
"minimist": "^1.2.0",
"mkdirp": "^0.5.1",
"npm-run-all": "^4.1.3",
"on-build-webpack": "^0.1.0",
"pre-commit": "^1.2.2",
"prettier": "^1.14.2",
"rimraf": "^2.6.2",
"sinon": "^7.3.1",
"ts-loader": "^3.5.0",
"typescript": "~2.9.2",
"webpack": "^4.31.0",
"webpack-cli": "^3.3.2"
},
"pre-commit": [
"precommit"
],
"scripts": {
"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": "node scripts/build.js",
"build_cpp": "node scripts/build_cpp.js",
"build_python": "node scripts/build_python.js",
"build_python:table": "node scripts/build_python_table.js",
"install_python": "cd python/table && python3 setup.py install",
"install_python:table": "cd python/perspective && python3 setup.py install",
"bench": "node scripts/bench.js",
"docs": "node scripts/docs.js",
"test": "node scripts/test.js",
"test_cpp": "node scripts/test_cpp.js",
"test_python": "node scripts/test_python.js",
"test_python:table": "node scripts/test_python_table.js",
"clean": "node scripts/clean.js",
"start": "lerna run start --stream --scope",
"precommit": "npm run lint",
"publish_python": "python3 setup.py sdist upload -r pypi",
"lint": "npm-run-all --silent lint:*",
"lint:eslint": "eslint packages/*/src/**/*.js packages/*/test/**/*.js examples/*/*.js",
"lint:cpp": "node scripts/lint_cpp.js",
"lint_python": "node scripts/lint_python.js",
"lint_python:table": "node scripts/lint_python_table.js",
"fix:es": "npm run lint:eslint -- --fix",
"fix:cpp": "node scripts/fix_cpp.js",
"fix:less": "prettier --tab-width 4 --write packages/**/src/less/*.less",
"fix:html": "html-beautify packages/**/src/html/*.html -r",
"fix:json": "prettier --tab-width 4 --write **/package.json",
"fix": "npm-run-all --silent fix:*",
"toggle_puppeteer": "node scripts/toggle_puppeteer.js"
},
"jest": {
"projects": [
"packages/perspective",
"packages/perspective-viewer",
"packages/perspective-viewer-hypergrid",
"packages/perspective-viewer-highcharts",
"packages/perspective-viewer-d3fc"
],
"verbose": true
}
}