-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
56 lines (56 loc) · 1.35 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
{
"name": "enchannel-zmq-backend",
"version": "9.1.19",
"description": "Channeling jupyter over zmq",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"nteractDesktop": "src/index.ts",
"scripts": {
"build": "tsc -b",
"test:integration": "node scripts/exercise-enchannel.js",
"test": "jest",
"semantic-release": "semantic-release"
},
"publishConfig": {
"access": "public"
},
"repository": "https://github.com/nteract/enchannel-zmq-backend",
"author": "Kyle Kelley <[email protected]>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/nteract/nteract/issues"
},
"devDependencies": {
"@semantic-release/npm": "^7.1.1",
"@types/jest": "^25.1.4",
"@types/uuid": "^7.0.0",
"@types/zeromq": "^4.6.1",
"conventional-changelog-conventionalcommits": "^4.6.0",
"jest": "^25.1.0",
"semantic-release": "^17.4.2",
"spawnteract": "^5.0.1",
"ts-jest": "^25.2.1",
"typescript": "^3.8.3",
"zeromq": "^5.2.0"
},
"dependencies": {
"@nteract/messaging": "^7.0.0",
"jmp": "^2.0.0",
"rxjs": "^6.3.3",
"uuid": "^7.0.0"
},
"peerDependencies": {
"rxjs": "^6.3.3"
},
"release": {
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "conventionalcommits"
}
],
"@semantic-release/npm"
]
}
}