-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
45 lines (45 loc) · 1.08 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
{
"name": "spawnteract",
"version": "5.0.1",
"description": "Proving out an API for spawning Jupyter kernels",
"main": "index.js",
"scripts": {
"test": "mocha --recursive",
"build:docs": "jsdoc -R README.md -d docs index.js",
"semantic-release": "semantic-release"
},
"author": "Kyle Kelley <[email protected]>",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/nteract/spawnteract.git"
},
"dependencies": {
"jsonfile": "^3.0.0",
"jupyter-paths": "^2.0.0",
"kernelspecs": "^2.0.0",
"mkdirp": "^0.5.1",
"portfinder": "^1.0.13",
"uuid": "^3.0.1"
},
"devDependencies": {
"@semantic-release/npm": "^7.1.3",
"@types/node": "^15.6.1",
"chai": "^4.0.1",
"conventional-changelog-conventionalcommits": "^4.6.0",
"jsdoc": "^3.4.0",
"mocha": "^3.4.2",
"semantic-release": "^17.4.3"
},
"release": {
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "conventionalcommits"
}
],
"@semantic-release/npm"
]
}
}