-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
74 lines (74 loc) · 1.9 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
73
74
{
"name": "@terminal-junkies/npmx",
"version": "1.4.0",
"description": "An advanced CLI for npm",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint .",
"deploy": "git push && git push --tags && npm publish"
},
"bin": {
"npmx": "bin/npmx.js"
},
"keywords": [
"npm",
"npm cli",
"npmx",
"cli",
"terminal"
],
"author": "Rajasegar Chandran <[email protected]>",
"license": "MIT",
"repository": "https://github.com/terminal-junkies/npmx",
"dependencies": {
"@blessed/blessed-contrib": "^1.0.1",
"@blessed/neo-blessed": "^1.0.0",
"@blessed/utils": "^2.0.1",
"@octokit/rest": "^18.0.6",
"blessed-themes": "^1.1.0",
"common-tags": "^1.8.0",
"filesize": "^6.1.0",
"github-readme": "^1.0.0",
"libnpm": "^3.0.1",
"module-alias": "^2.2.2",
"npm-expansions": "^2.2.5"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"eslint": "^7.10.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"prettier": "^2.1.2",
"semantic-release": "^17.2.1"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
[
"@semantic-release/git",
{
"assets": [
"package.json",
"CHANGELOG.md"
],
"message": "release(version): Release ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
],
"@semantic-release/github"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}