-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
52 lines (52 loc) · 1.2 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
{
"name": "releasify",
"version": "3.1.2",
"private": false,
"description": "Tool to release in a simpler way your module",
"main": "lib/cli.js",
"type": "commonjs",
"bin": {
"releasify": "lib/cli.js"
},
"scripts": {
"lint": "eslint",
"lint:fix": "eslint --fix",
"test": "tap"
},
"dependencies": {
"@octokit/rest": "^19.0.3",
"ajv": "^8.0.0",
"commist": "^3.0.0",
"conf": "^10.0.0",
"debug": "^4.3.2",
"enquirer": "^2.3.5",
"open-editor": "^3.0.0",
"parse-github-url": "^1.0.2",
"pino": "^8.0.0",
"pino-pretty": "^10.0.0",
"semver": "^7.3.2",
"simple-git": "^2.37.0",
"temp-write": "^4.0.0",
"yargs-parser": "^21.1.0"
},
"devDependencies": {
"eslint": "^9.17.0",
"neostandard": "^0.12.0",
"proxyquire": "^2.1.3",
"tap": "^16.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fastify/releasify.git"
},
"keywords": [
"cli",
"release"
],
"author": "Manuel Spigolon <[email protected]> (https://github.com/Eomm)",
"license": "MIT",
"bugs": {
"url": "https://github.com/fastify/releasify/issues"
},
"homepage": "https://github.com/fastify/releasify#readme"
}