-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
83 lines (83 loc) · 2.4 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
{
"name": "pandas-sanddance",
"version": "0.3.0",
"description": "Custom Jupyter Widget for SanDance",
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension",
"widgets"
],
"files": [
"lib/**/*.js",
"dist/*.js",
"css/*.css"
],
"homepage": "https://github.com//pandas-sanddance",
"bugs": {
"url": "https://github.com//pandas-sanddance/issues"
},
"license": "BSD-3-Clause",
"author": {
"name": "satotake",
"email": "[email protected]"
},
"main": "lib/index.js",
"types": "./lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com//pandas-sanddance"
},
"scripts": {
"build": "npm run build:lib && npm run build:nbextension",
"build:labextension": "npm run clean:labextension && mkdirp pandas_sanddance/labextension && cd pandas_sanddance/labextension && npm pack ../..",
"build:lib": "tsc",
"build:nbextension": "webpack -p",
"build:all": "npm run build:labextension && npm run build:nbextension",
"clean": "npm run clean:lib && npm run clean:nbextension",
"clean:lib": "rimraf lib",
"clean:labextension": "rimraf pandas_sanddance/labextension",
"clean:nbextension": "rimraf pandas_sanddance/nbextension/static/index.js",
"prepack": "npm run build:lib",
"test": "echo TODO",
"watch": "npm-run-all -p watch:*",
"watch:lib": "tsc -w",
"watch:nbextension": "webpack --watch"
},
"dependencies": {
"@deck.gl/core": "6.4",
"@deck.gl/layers": "6.4",
"@jupyter-widgets/base": "^3",
"@msrvida/sanddance-explorer": "^2",
"luma.gl": "6.4",
"office-ui-fabric-react": "6.204.4",
"react-dom": ">=16.9.0 <16.10.0",
"vega": "5.11.1"
},
"devDependencies": {
"@danmarshall/deckgl-typings": "^4.1.8",
"@phosphor/application": "^1.6.0",
"@phosphor/widgets": "^1.6.0",
"@types/expect.js": "^0.3.29",
"@types/mocha": "^5.2.5",
"@types/node": "^10.11.6",
"@types/react-dom": "^16.9.8",
"@types/webpack-env": "^1.13.6",
"css-loader": "^3.2.0",
"fs-extra": "^7.0.0",
"mkdirp": "^0.5.1",
"mocha": "^5.2.0",
"npm-run-all": "^4.1.3",
"rimraf": "^2.6.2",
"source-map-loader": "^0.2.4",
"style-loader": "^1.0.0",
"ts-loader": "^5.2.1",
"typescript": "3.9.2",
"vega-typings": "0.16.0",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2"
},
"jupyterlab": {
"extension": "lib/plugin"
}
}