-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
45 lines (45 loc) · 1.03 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
{
"name": "git-latest-semver-tag",
"version": "1.0.2",
"description": "Get the most recent git semver tag of your repository",
"homepage": "https://github.com/stevemao/git-latest-semver-tag",
"author": {
"name": "Steve Mao",
"email": "maochenyan@gmail.com",
"url": "https://github.com/stevemao"
},
"repository": "stevemao/git-latest-semver-tag",
"license": "MIT",
"files": [
"index.js",
"cli.js"
],
"keywords": [
"git-latest-semver-tag",
"recent",
"semver",
"tag",
"git-tag",
"git"
],
"dependencies": {
"git-semver-tags": "^1.1.2",
"meow": "^3.3.0"
},
"devDependencies": {
"coveralls": "^2.11.2",
"istanbul": "^0.3.14",
"jscs": "^2.1.0",
"jshint": "^2.8.0",
"mocha": "*",
"shelljs": "^0.5.0"
},
"scripts": {
"coverage": "istanbul cover _mocha -- -R spec && rm -rf ./coverage",
"lint": "jshint *.js --exclude node_modules && jscs *.js",
"test": "npm run-script lint && mocha"
},
"bin": {
"git-latest-semver-tag": "cli.js"
}
}