forked from jupyterlab/jupyterlab
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
106 lines (106 loc) · 3.59 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
{
"name": "jupyterlab",
"version": "0.0.3",
"description": "A computational environment for Jupyter.",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"dependencies": {
"ansi_up": "^1.3.0",
"backbone": "^1.2.0",
"codemirror": "^5.12.0",
"diff-match-patch": "^1.0.0",
"file-loader": "^0.8.5",
"jquery": "^2.2.0",
"jquery-ui": "^1.10.5",
"jupyter-js-services": "^0.10.4",
"jupyter-js-utils": "^0.4.0",
"jupyter-js-widgets": "2.0.0-dev.0",
"marked": "^0.3.5",
"moment": "^2.11.2",
"phosphide": "^0.9.4",
"phosphor-arrays": "^1.0.6",
"phosphor-codemirror": "^0.0.1",
"phosphor-di": "^0.9.0",
"phosphor-disposable": "^1.0.5",
"phosphor-domutil": "^1.2.0",
"phosphor-dragdrop": "^0.9.0",
"phosphor-keymap": "^0.8.0",
"phosphor-menus": "^1.0.0-rc.1",
"phosphor-messaging": "^1.0.6",
"phosphor-observablelist": "^1.0.0-beta",
"phosphor-panel": "^1.0.0-rc.1",
"phosphor-properties": "^2.0.0",
"phosphor-signaling": "^1.2.0",
"phosphor-tabs": "^1.0.0-rc.2",
"phosphor-widget": "^1.0.0-rc.1",
"sanitizer": "^0.1.3",
"xterm": "^0.33.0"
},
"devDependencies": {
"concurrently": "^2.0.0",
"css-loader": "^0.23.1",
"expect.js": "^0.3.1",
"file-loader": "^0.8.5",
"fs-extra": "^0.26.4",
"istanbul-instrumenter-loader": "^0.1.3",
"json-loader": "^0.5.4",
"karma": "^0.13.19",
"karma-chrome-launcher": "^0.2.2",
"karma-coverage": "^0.5.3",
"karma-firefox-launcher": "^0.1.7",
"karma-ie-launcher": "^0.2.0",
"karma-mocha": "^0.2.1",
"karma-mocha-reporter": "^1.1.5",
"mocha": "^2.3.4",
"raw-loader": "^0.5.1",
"rimraf": "^2.5.0",
"style-loader": "^0.13.0",
"typedoc": "https://github.com/SierraSoftworks/typedoc.git#cb5aea2b218b4f773451e2818a48629ee9c5066e",
"typescript": "^1.8.0",
"url-loader": "^0.5.7",
"watch": "^0.17.1",
"webpack": "^1.12.11"
},
"scripts": {
"build": "npm run build:src",
"build:examples": "node scripts/buildexamples.js",
"build:src": "tsc --project src && node scripts/copyfiles.js",
"build:test": "tsc --project test/src && webpack --config test/webpack.conf.js",
"clean": "rimraf docs && rimraf lib && rimraf test/build && rimraf test/coverage",
"clean:examples": "node scripts/cleanexamples.js",
"docs": "typedoc --mode modules --module commonjs --excludeNotExported --target es5 --moduleResolution node --out docs/ src",
"postinstall": "npm dedupe",
"prepublish": "npm run build",
"test": "npm run build:test && npm run test:firefox",
"test:chrome": "karma start --browsers=Chrome test/karma.conf.js",
"test:coverage": "npm run build:test && webpack --config test/webpack-cov.conf.js && karma start test/karma-cov.conf.js",
"test:debug": "karma start --browsers=Chrome --singleRun=false --debug=true test/karma.conf.js",
"test:firefox": "karma start --browsers=Firefox test/karma.conf.js",
"test:ie": "karma start --browsers=IE test/karma.conf.js",
"watch": "watch 'npm run build' src --wait 10",
"watch:test": "watch 'npm run build && npm test' src src/test --wait 10"
},
"repository": {
"type": "git",
"url": "https://github.com/jupyter/jupyterlab"
},
"keywords": [
"jupyter",
"jupyterlab"
],
"files": [
"lib/*.css",
"lib/*.d.ts",
"lib/*.js",
"lib/**/*.css",
"lib/**/*.d.ts",
"lib/**/*.js",
"lib/**/*.svg"
],
"author": "Project Jupyter",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/jupyter/jupyterlab/issues"
},
"homepage": "https://github.com/jupyter/jupyterlab"
}