-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
76 lines (76 loc) · 2.12 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
{
"name": "@johnkit/jupyterlab_geojs",
"version": "0.3.3",
"description": "A package for rendering GeoJS scenes in JupyterLab",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/*.d.ts",
"lib/*.js",
"style/*.*"
],
"directories": {
"lib": "lib/"
},
"keywords": [
"jupyter",
"jupyterlab",
"jupyterlab-extension"
],
"jupyterlab": {
"mimeExtension": true
},
"dependencies": {
"@jupyter-widgets/base": "^1.2.1",
"@jupyterlab/application": "^0.17.2",
"@jupyterlab/docregistry": "^0.17.2",
"@jupyterlab/notebook": "^0.17.2",
"@jupyterlab/rendermime-interfaces": "^1.1.2",
"@phosphor/disposable": "^1.1.2",
"@phosphor/messaging": "^1.2.2",
"@phosphor/widgets": "^1.5.0",
"@types/base64-arraybuffer": "^0.1.0",
"@types/react-dom": "^16.0.6",
"babel-cli": "^6.26.0",
"base64-arraybuffer": "^0.1.5",
"colorkit": "^1.2.0",
"geojs": "^0.17.0",
"react": "^16.4.1",
"vtk.js": "^7.4.10"
},
"devDependencies": {
"ajv": "^6.5.2",
"babel-preset-env": "^1.7.0",
"canvas-prebuilt": "^1.6.5-prerelease.1",
"copy-webpack-plugin": "^4.5.2",
"jasmine": "^3.1.0",
"jsdom": "^11.12.0",
"json-schema-ref-parser": "^5.1.2",
"kw-web-suite": "^6.2.0",
"pug-cli": "^1.0.0-alpha6",
"rimraf": "~2.6.2",
"rollup": "^0.63.5",
"rollup-plugin-commonjs": "^9.1.4",
"rollup-plugin-node-resolve": "^3.3.0",
"typescript": "~2.6.2"
},
"scripts": {
"build": "webpack && tsc",
"build:browser": "tsc && node node_modules/rollup/bin/rollup --config test/browser/rollup.config.js",
"build:extension": "tsc",
"build:las-test": "webpack --config test/las/webpack.config.js",
"build:schema": "node ./project/schema/combine_schemas.js",
"clean": "rimraf lib",
"prepack": "npm run clean && npm run build",
"test": "node node_modules/babel-cli/bin/babel-node test/jasmine/run.js",
"watch": "tsc -w"
},
"babel": {
"presets": [
"env"
]
},
"author": "Kitware",
"license": "BSD-3-Clause",
"repository": "https://github.com/OpenGeoscience/jupyterlab_geojs"
}