-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
119 lines (119 loc) · 3.95 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
{
"name": "ibis-vega-transform",
"version": "5.3.0",
"description": "A JupyterLab extension for performing Vega transforms lazily using Ibis.",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension"
],
"homepage": "https://github.com/Quansight/ibis-vega-transform",
"bugs": {
"url": "https://github.com/Quansight/ibis-vega-transform/issues"
},
"license": "Apache-2.0",
"author": "OmniSci/Quansight",
"files": [
"lib/**/*.{d.ts,eot,gif,html,jpg,js,js.map,json,png,svg,woff2,ttf}",
"style/**/*.{css,.js,eot,gif,html,jpg,json,png,svg,woff2,ttf}"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"style": "style/index.css",
"repository": {
"type": "git",
"url": "https://github.com/Quansight/ibis-vega-transform.git"
},
"scripts": {
"build": "jlpm run build:lib && jlpm run build:labextension:dev",
"build:prod": "jlpm run build:lib && jlpm run build:labextension",
"build:labextension": "jupyter labextension build .",
"build:labextension:dev": "jupyter labextension build --development True .",
"build:lib": "tsc",
"clean": "jlpm run clean:lib",
"clean:lib": "rimraf lib tsconfig.tsbuildinfo",
"clean:labextension": "rimraf ibis_vega_transform/labextension",
"clean:all": "jlpm run clean:lib && jlpm run clean:labextension",
"eslint": "eslint . --ext .ts,.tsx --fix",
"eslint:check": "eslint . --ext .ts,.tsx",
"install:extension": "jupyter labextension develop --overwrite .",
"prepare": "jlpm run clean && jlpm run build:prod",
"prettier": "prettier --write '**/*{.ts,.tsx,.js,.jsx,.css,.json,.md}'",
"tslint": "tslint -c tslint.json --project tsconfig.json '**/*{.ts,.tsx}'",
"test": "env JEST_PUPPETEER_CONFIG=./config/jest/jest-puppeteer.config.js jest --runInBand --verbose=true --detectOpenHandles --config ./config/jest/jest.config.js",
"test:debug": "env HEADLESS=false SLOWMO=true jlpm test",
"watch": "run-p watch:src watch:labextension",
"watch:src": "tsc -w",
"watch:labextension": "jupyter labextension watch ."
},
"dependencies": {
"@jupyterlab/application": "^3.0.0",
"@jupyterlab/coreutils": "^5.0.0",
"@jupyterlab/docregistry": "^3.0.0",
"@jupyterlab/notebook": "^3.0.0",
"@jupyterlab/rendermime-interfaces": "^3.0.0",
"@jupyterlab/services": "^6.0.0",
"@lumino/coreutils": "^1.4.2",
"@lumino/widgets": "^1.11.1",
"jupyter-jaeger": "^1.0.4",
"vega": "^5.13.0",
"vega-embed": "^6.10.0",
"vega-lite": "^4.13.1"
},
"devDependencies": {
"@jupyterlab/builder": "^3.0.0",
"@types/expect-puppeteer": "^3.3.2",
"@types/jaeger-client": "3.15.3",
"@types/jest": "^24.0.25",
"@types/jest-environment-puppeteer": "^4.3.1",
"@types/node": "^13.1.2",
"@types/puppeteer": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^2.27.0",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^3.1.0",
"jest": "^24.9.0",
"jest-circus": "^24.9.0",
"jest-environment-puppeteer-jsdom": "^4.3.1",
"jest-puppeteer": "^4.4.0",
"lint-staged": "^9.5.0",
"mkdirp": "^1.0.3",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.0",
"puppeteer": "^2.0.0",
"resemblejs": "^3.2.3",
"rimraf": "^3.0.2",
"ts-jest": "^24.1.0",
"tslint": "^5.15.0",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.1.0",
"tslint-react": "^4.0.0",
"typescript": "~3.8.3"
},
"sideEffects": [
"style/*.css",
"style/index.js"
],
"styleModule": "style/index.js",
"jupyterlab": {
"discovery": {
"server": {
"managers": [
"pip"
],
"base": {
"name": "ibis-vega-transform"
}
}
},
"extension": true,
"outputDir": "ibis_vega_transform/labextension"
},
"husky": {
"hooks": {
"pre-commit": "black ibis_vega_transform && jlpm run prettier"
}
}
}