This repository has been archived by the owner on Aug 30, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathpackage.json
72 lines (72 loc) · 2.4 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
{
"name": "@jupyterlab/services",
"version": "0.40.3",
"description": "Client APIs for the Jupyter services REST APIs",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"dependencies": {
"@phosphor/algorithm": "^0.1.1",
"@phosphor/coreutils": "^0.1.5",
"@phosphor/disposable": "^0.1.1",
"@phosphor/signaling": "^0.1.2",
"@types/minimist": "^1.2.0",
"@types/text-encoding": "0.0.30",
"minimist": "^1.2.0",
"path-posix": "^1.0.0",
"url-parse": "^1.1.8"
},
"devDependencies": {
"@types/expect.js": "^0.3.29",
"@types/mocha": "^2.2.39",
"@types/ws": "0.0.39",
"expect.js": "^0.3.1",
"istanbul": "^0.3.18",
"mocha": "^2.2.5",
"rimraf": "^2.4.2",
"text-encoding": "^0.5.2",
"typedoc": "^0.5.7",
"typescript": "~2.1.6",
"webpack": "^1.13.1",
"ws": "^1.0.1",
"xmlhttprequest": "^1.8.0"
},
"scripts": {
"clean": "rimraf docs && rimraf lib && rimraf test/build && rimraf test/coverage",
"build:src": "tsc --project src",
"build:test": "tsc --project test/src",
"build": "npm run build:src && npm run build:test",
"example:browser": "cd examples/browser && npm run update && npm run build",
"example:node": "cd examples/node && npm install",
"build:examples": "npm run example:browser && npm run example:node",
"docs": "typedoc --options typedoc.json src",
"prepublish": "npm run build && webpack",
"test:coverage": "istanbul cover --dir test/coverage _mocha -- --retries 3 test/build/**/*.spec.js --foo bar --terminalsAvailable True",
"test:integration": "cd test && python integration_test.py",
"test:devtool": "devtool node_modules/mocha/bin/_mocha -qc test/build/**/**.spec.js --foo bar --terminalsAvailable True",
"test:debug": "mocha test/build/**/*.spec.js --foo bar --terminalsAvailable True --debug-brk",
"test": "mocha --retries 3 test/build/**/*.spec.js --foo bar --terminalsAvailable True"
},
"repository": {
"type": "git",
"url": "https://github.com/jupyter/jupyter-js-services"
},
"keywords": [
"jupyter",
"services",
"notebook"
],
"files": [
"lib/**/*.js",
"lib/**/*.d.ts",
"lib/*.js",
"lib/*.d.ts",
"dist/*.js",
"dist/**/*.js"
],
"author": "Project Jupyter",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/jupyterlab/services/issues"
},
"homepage": "https://github.com/jupyterlab/services"
}