-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
35 lines (35 loc) · 931 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
{
"name": "dev-build-release",
"version": "0.1.4",
"description": "Simple tool to append the build number to the package.json for a development release",
"main": "index.js",
"preferGlobal": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"bin": {
"dev-build-release": "./bin/dev-build-release",
"determine-version": "./bin/determine-version",
"generate-version-file": "./bin/generate-version-file"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jgodi/dev-build-release.git"
},
"keywords": [
"npm",
"release",
"dev"
],
"author": "Bullhorn, Inc.",
"license": "MIT",
"bugs": {
"url": "https://github.com/bullhorn/dev-build-release/issues"
},
"homepage": "https://github.com/bullhorn/dev-build-release#readme",
"dependencies": {
"chalk": "^1.1.1",
"git-repo-info": "^2.0.0",
"yargs": "^4.1.0"
}
}