-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.37 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
{
"name": "phosphide-bokeh-demo",
"version": "0.0.1",
"description": "An example Phosphide Bokeh application.",
"main": "index.js",
"dependencies": {
"phosphide": "^0.9.2",
"phosphor-arrays": "^1.0.6",
"phosphor-domutil": "^1.2.0",
"phosphor-dragdrop": "^0.9.1",
"phosphor-menus": "^1.0.0-rc.1",
"phosphor-messaging": "^1.0.6",
"phosphor-panel": "^1.0.0-rc.1",
"phosphor-properties": "^2.0.0",
"phosphor-widget": "^1.0.0-rc.0",
"ag-grid-enterprise": "^4.0.6"
},
"devDependencies": {
"css-loader": "^0.23.1",
"http-server": "^0.8.5",
"rimraf": "^2.4.4",
"style-loader": "^0.13.0",
"steal": "^0.15.1",
"typescript": "^1.6.2",
"webpack": "^1.12.12"
},
"scripts": {
"clean": "rimraf data/*.js && rimraf bundle.js",
"build": "tsc --project data && webpack --config webpack.conf.js",
"postinstall": "npm dedupe",
"serve": "http-server -c-1"
},
"repository": {
"type": "git",
"url": "https://github.com/dwillmer/phosphor-bokeh-demo.git"
},
"files": [
"lib/*.css",
"lib/*.d.ts",
"lib/*.js"
],
"keywords": [
"application",
"ide",
"plugin"
],
"author": "Dave Willmer <[email protected]>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/dwillmer/phosphor-bokeh-demo"
},
"homepage": "https://github.com/dwillmer/phosphor-bokeh-demo"
}