-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
71 lines (71 loc) · 1.89 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
{
"name": "@nteract/kernel-relay",
"version": "2.0.2",
"description": "This package provides a GraphQL API for managing communication between a Jupyter kernel and clients. The package allows users to launch kernels, subscribe to the status of a kernel, send Jupyter messages from a client to a kernel, and more.",
"bin": {
"kernel-relay": "lib/index.js"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"postinstall": "npm run get-zeromq",
"get-zeromq": "node get-prebuilt.js",
"prepublishOnly": "npm run build:prod && rm lib/build/Release/zmq.node",
"build": "ncc build src/index.ts -o lib",
"build:prod": "npm run build -- -m -s",
"build:watch": "npm run build -- --watch",
"start": "ncc run src/index.ts",
"dev": "concurrently \"nodemon lib/index.js\" \"npm run build:watch\"",
"test": "npx jest",
"clean": "rimraf node_modules"
},
"jest": {
"preset": "ts-jest",
"globals": {
"ts-jest": {
"tsConfig": "tsconfig.json"
}
},
"moduleFileExtensions": [
"js",
"jsx",
"ts",
"tsx"
]
},
"keywords": [
"jupyter",
"graphql",
"server"
],
"files": [
"lib",
"get-prebuilt.js"
],
"publishConfig": {
"access": "public"
},
"author": "nteract Contributors",
"license": "BSD-3-Clause",
"dependencies": {
"zeromq": "^5.1.0"
},
"devDependencies": {
"@nteract/fs-kernels": "^2.0.1",
"@nteract/messaging": "^6.0.1",
"@types/graphql-type-json": "^0.1.3",
"@types/jest": "^23.3.13",
"@zeit/ncc": "^0.18.5",
"apollo-server": "^2.3.1",
"apollo-server-testing": "^2.3.1",
"concurrently": "^4.1.0",
"enchannel-zmq-backend": "^9.0.1",
"graphql": "^14.0.2",
"graphql-type-json": "^0.2.1",
"jest": "^24.0.0",
"mkdirp": "^0.5.1",
"nodemon": "^1.18.9",
"ts-jest": "^23.10.5",
"typescript": "^3.3.1"
}
}