forked from jupyterlab/jupyterlab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (115 loc) · 4.2 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
110
111
112
113
114
115
{
"name": "jupyterlab",
"version": "0.16.2",
"description": "A computational environment for Jupyter.",
"directories": {
"lib": "lib/"
},
"typings": "lib/index.d.ts",
"dependencies": {
"@jupyterlab/services": "^0.38.0",
"ansi_up": "^1.3.0",
"backbone": "^1.2.0",
"codemirror": "^5.20.2",
"d3-dsv": "^1.0.0",
"diff-match-patch": "^1.0.0",
"es6-promise": "^3.2.1",
"less": "^2.7.1",
"marked": "^0.3.5",
"moment": "^2.11.2",
"phosphor": "^0.7.0",
"sanitize-html": "^1.12.0",
"semver": "^5.3.0",
"simulate-event": "^1.2.0",
"xterm": "^2.3.0"
},
"devDependencies": {
"@jupyterlab/extension-builder": "^0.11.0",
"@types/d3-dsv": "^1.0.29",
"@types/expect.js": "^0.3.29",
"@types/marked": "0.0.28",
"@types/mathjax": "0.0.31",
"@types/mocha": "^2.2.32",
"@types/node": "0.0.1",
"@types/sanitize-html": "^1.13.31",
"@types/semver": "^5.3.30",
"concurrently": "^2.0.0",
"css-loader": "^0.23.1",
"expect.js": "^0.3.1",
"file-loader": "^0.8.5",
"font-awesome": "^4.6.3",
"fs-extra": "^0.26.4",
"istanbul-instrumenter-loader": "^0.1.3",
"json-loader": "^0.5.4",
"json-to-html": "^0.1.2",
"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",
"karma-remap-coverage": "^0.1.1",
"karma-sourcemap-loader": "^0.3.7",
"mocha": "^2.3.4",
"raw-loader": "^0.5.1",
"rimraf": "^2.5.0",
"style-loader": "^0.13.0",
"typedoc": "^0.5.0",
"typescript": "~2.1.6",
"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": "rimraf build && tsc --project src && node scripts/copyfiles.js",
"build:test": "rimraf test/build && tsc --project test/src && webpack --config test/webpack.conf.js",
"build:serverextension": "cd jupyterlab && rimraf build && tsc --project src && webpack",
"clean": "rimraf docs && rimraf lib && rimraf test/build && rimraf test/coverage && rimraf jupyterlab/build",
"clean:examples": "node scripts/cleanexamples.js",
"clean:slate": "npm run clean && npm run clean:examples && rimraf jupyterlab/node_modules && rimraf node_modules && npm install",
"docs": "typedoc --mode modules --module commonjs --excludeNotExported --target es5 --moduleResolution node --out docs/ src",
"postinstall": "node scripts/dedupe.js",
"preversion": "npm update && npm run postinstall && npm run clean && npm run build:all",
"test": "npm run test:firefox",
"test:chrome": "npm run build:test && cd test && python run-test.py --browsers=Chrome karma.conf.js",
"test:coverage": "tsc --project test/src && webpack --config test/webpack-cov.conf.js && cd test && python run-test.py karma-cov.conf.js",
"test:debug": "npm run build:test && cd test && python run-test.py --browsers=Chrome --singleRun=false --debug=true karma.conf.js",
"test:firefox": "npm run build:test && cd test && python run-test.py --browsers=Firefox karma.conf.js",
"test:ie": "npm run build:test && cd test && python run-test.py --browsers=IE karma.conf.js",
"watch": "watch \"npm run build:all\" src --wait 10 --ignoreDotFiles",
"watch:src": "watch \"npm run build\" src --wait 10 --ignoreDotFiles",
"watch:test": "watch \"npm run build && npm test\" src test/src --wait 10 --ignoreDotFiles"
},
"repository": {
"type": "git",
"url": "https://github.com/jupyterlab/jupyterlab"
},
"keywords": [
"jupyter",
"jupyterlab"
],
"files": [
"lib/*.css",
"lib/*.d.ts",
"lib/*.js",
"lib/*.js.map",
"lib/**/*.css",
"lib/**/*.d.ts",
"lib/**/*.js",
"lib/**/*.js.map",
"lib/**/*.svg",
"lib/**/*.gif",
"src/**/**.ts",
"scripts/dedupe.js"
],
"author": "Project Jupyter",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/jupyterlab/jupyterlab/issues"
},
"homepage": "https://github.com/jupyterlab/jupyterlab"
}