forked from jupyterlab/jupyterlab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 3.46 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
{
"private": true,
"scripts": {
"install": "lerna bootstrap --hoist",
"build": "cd packages/all-packages && npm run build",
"build:examples": "lerna run build --scope \"@jupyterlab/example-*\"",
"build:main": "npm run build && cd jupyterlab && npm run build",
"build:src": "lerna run build --scope \"@jupyterlab/!(test-|example-)*\"",
"build:test": "lerna run build:test",
"clean": "node scripts/clean-packages.js examples packages",
"clean:examples": "node scripts/clean-packages.js examples",
"clean:main": "cd jupyterlab && npm run clean",
"clean:src": "node scripts/clean-packages.js packages",
"clean:tests": "lerna run clean --scope \"@jupyterlab/test-*\"",
"coverage": "lerna run coverage --stream",
"docs": "lerna run docs",
"test": "cd test && npm test",
"test:services": "cd packages/services && npm test && npm run test:integration && cd examples/node && python main.py",
"test:chrome": "lerna run test:chrome --stream",
"test:firefox": "lerna run test:firefox --stream",
"test:ie": "lerna run test:ie --concurrency 1 --stream",
"publish": "npm update && npm install && npm run clean && npm run build && lerna publish -m \"Publish\" && cd jupyterlab && npm run publish",
"update:dependency": "node scripts/update-dependency.js",
"watch": "watch \"npm run build\" ./packages/** --wait 10 --filter=scripts/watch-filter.js",
"watch:main": "watch \"npm run build:main\" ./packages/** --wait 10 --filter=scripts/watch-filter.js"
},
"dependencies": {},
"devDependencies": {
"@types/chai": "^3.4.35",
"@types/codemirror": "0.0.38",
"@types/d3-dsv": "^1.0.30",
"@types/expect.js": "^0.3.29",
"@types/extract-text-webpack-plugin": "^2.0.1",
"@types/marked": "0.0.28",
"@types/mathjax": "0.0.31",
"@types/minimist": "^1.2.0",
"@types/mocha": "^2.2.32",
"@types/node": "^7.0.11",
"@types/sanitize-html": "^1.13.31",
"@types/semver": "^5.3.31",
"@types/text-encoding": "0.0.30",
"@types/webpack": "^2.2.12",
"@types/ws": "0.0.39",
"ansi_up": "^1.3.0",
"chai": "^3.5.0",
"codemirror": "^5.24.2",
"concurrently": "^3.4.0",
"css-loader": "^0.27.3",
"d3-dsv": "^1.0.5",
"es6-promise": "^4.1.0",
"expect.js": "^0.3.1",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.10.1",
"font-awesome": "^4.6.3",
"fs-extra": "^2.1.2",
"istanbul": "^0.3.18",
"istanbul-instrumenter-loader": "^2.0.0",
"json-loader": "^0.5.4",
"json-to-html": "^0.1.2",
"karma": "^1.5.0",
"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",
"lerna": "2.0.0-beta.38",
"marked": "^0.3.6",
"minimist": "^1.2.0",
"mocha": "^3.2.0",
"moment": "^2.17.1",
"path-posix": "^1.0.0",
"raw-loader": "^0.5.1",
"rimraf": "^2.5.2",
"sanitize-html": "^1.14.1",
"semver": "^5.3.0",
"simulate-event": "^1.4.0",
"style-loader": "^0.13.1",
"supports-color": "^3.1.2",
"text-encoding": "^0.5.2",
"typedoc": "^0.5.10",
"typescript": "^2.2.1",
"url-loader": "^0.5.7",
"url-parse": "^1.1.8",
"watch": "^1.0.2",
"webpack": "^2.2.1",
"webpack-config": "^6.2.0",
"ws": "^1.1.1",
"xmlhttprequest": "^1.8.0",
"xterm": "^2.4.0"
}
}