-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
59 lines (59 loc) · 1.39 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
{
"name": "jupyter-paths",
"version": "2.0.4",
"description": "Node wrapping of jupyter/jupyter_core to resolve paths across Jupyter installations.",
"main": "index.js",
"types": "./index.d.ts",
"scripts": {
"test": "mocha",
"test:watch": "npm run test -- --watch",
"release": "semantic-release --branches main"
},
"repository": {
"type": "git",
"url": "https://github.com/nteract/jupyter-paths.git"
},
"keywords": [
"jupyter",
"paths",
"ipython"
],
"author": "Kyle Kelley <[email protected]>",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/nteract/jupyter-paths/issues"
},
"homepage": "https://github.com/nteract/jupyter-paths",
"devDependencies": {
"@semantic-release/git": "^9.0.0",
"@semantic-release/npm": "^7.1.3",
"chai": "^4.0.1",
"conventional-changelog-conventionalcommits": "^4.6.0",
"mocha": "^7.1.1",
"rewire": "^2.5.2",
"semantic-release": "^17.4.3"
},
"dependencies": {
"home-dir": "^1.0.0"
},
"release": {
"plugins": [
"@semantic-release/npm",
[
"@semantic-release/commit-analyzer",
{
"preset": "conventionalcommits"
}
],
[
"@semantic-release/git",
{
"assets": [
"package.json"
],
"message": "release: ${nextRelease.version}"
}
]
]
}
}