forked from jupyterlab/jupyterlab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 3.86 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
{
"name": "jupyterlab",
"version": "0.3.0",
"description": "A computational environment for Jupyter.",
"directories": {
"lib": "lib/"
},
"typings": "lib/index.d.ts",
"dependencies": {
"ansi_up": "^1.3.0",
"backbone": "^1.2.0",
"codemirror": "5.17.0",
"d3-dsv": "^1.0.0",
"diff-match-patch": "^1.0.0",
"es6-promise": "^3.2.1",
"jquery": "^2.2.0",
"jupyter-js-services": "^0.18.0",
"less": "^2.7.1",
"marked": "^0.3.5",
"moment": "^2.11.2",
"phosphor": "^0.6.1",
"sanitize-html": "^1.12.0",
"semver": "^5.3.0",
"simulate-event": "^1.2.0",
"xterm": "^1.1.3"
},
"devDependencies": {
"@types/d3-dsv": "^1.0.29",
"@types/expect.js": "^0.3.29",
"@types/jquery": "^2.0.32",
"@types/marked": "0.0.28",
"@types/mathjax": "0.0.30",
"@types/mocha": "^2.2.32",
"@types/requirejs": "^2.1.28",
"@types/sanitize-html": "^1.13.31",
"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": "github:jasongrout/typedoc#ts2",
"typescript": "^2.0.3",
"url-loader": "^0.5.7",
"watch": "^0.17.1",
"webpack": "^1.12.11"
},
"scripts": {
"build": "npm run build:src",
"build:all": "npm run build:src && npm run build:serverextension",
"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",
"build:serverextension": "cd jupyterlab && npm run build && cd ..",
"clean": "rimraf docs && rimraf lib && rimraf test/build && rimraf test/coverage",
"clean:all": "npm run clean && cd jupyterlab && npm run clean && cd ..",
"clean:examples": "node scripts/cleanexamples.js",
"clean:slate": "npm run clean:all && npm run clean:examples && rimraf jupyterlab/node_modules && rimraf node_modules && npm install && cd jupyterlab && npm install && cd ..",
"docs": "typedoc --mode modules --module commonjs --excludeNotExported --target es5 --moduleResolution node --out docs/ src",
"postinstall": "node scripts/dedupe.js",
"prepublish": "npm run build",
"test": "npm run test:firefox",
"test:chrome": "npm run build:test && 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": "npm run build:test && karma start --browsers=Chrome --singleRun=false --debug=true test/karma.conf.js",
"test:firefox": "npm run build:test && karma start --browsers=Firefox test/karma.conf.js",
"test:ie": "npm run build:test && karma start --browsers=IE test/karma.conf.js",
"watch": "watch \"npm run build:all\" src --wait 10",
"watch:src": "watch \"npm run build\" src --wait 10",
"watch:test": "watch \"npm run build && npm test\" src test/src --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",
"lib/**/*.gif",
"scripts/dedupe.js"
],
"author": "Project Jupyter",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/jupyter/jupyterlab/issues"
},
"homepage": "https://github.com/jupyter/jupyterlab"
}