forked from release-it/release-it
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 875 Bytes
/
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
{
"name": "release-it",
"version": "0.0.9",
"description": "Interactive release tool for Git repositories. Supports to build and release to a distribution/component repository. Publish to npm.",
"keywords": [
"release",
"tool",
"shell",
"script",
"publish",
"repository",
"build",
"distribution",
"npm",
"interactive",
"git"
],
"repository": {
"type": "git",
"url": "[email protected]:webpro/release-it.git"
},
"bin": "./bin/release.js",
"main": "./lib/release.js",
"author": {
"name": "Lars Kappert",
"email": "[email protected]"
},
"license": "MIT",
"dependencies": {
"optimist": "^0.6.1",
"semver": "^2.3.1",
"shelljs": "^0.3.0",
"inquirer": "^0.5.1",
"when": "^3.2.3",
"chalk": "^0.4.0",
"mkdirp": "^0.5.0",
"glob": "^4.0.2",
"graceful-fs": "^3.0.2"
}
}