forked from vojtajina/grunt-bump
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.48 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
75
76
77
78
79
80
81
{
"name": "grunt-bump",
"description": "Bump package version",
"version": "0.8.0",
"homepage": "https://github.com/vojtajina/grunt-bump",
"author": {
"name": "Vojta Jína",
"email": "[email protected]"
},
"contributors": [
"Vojta Jina <[email protected]>",
"Mathias Paumgarten <[email protected]>",
"Elfrey Shira <[email protected]>",
"adam j. sontag <[email protected]>",
"Jonas Rabbe <[email protected]>",
"travis4all <[email protected]>",
"Jarrett Drouillard <[email protected]>",
"Jason Diamond <[email protected]>",
"Joe Mills <[email protected]>",
"Mathias Paumgarten <[email protected]>",
"Mayhem <[email protected]>",
"Michael Hellein <[email protected]>",
"Mike Schechter <[email protected]>",
"Mário Gonçalves <[email protected]>",
"Nikolay Vasilchuk <[email protected]>",
"Nils Winkler <[email protected]>",
"RobinQu <[email protected]>",
"Scott Davis <[email protected]>",
"Snugug <[email protected]>",
"Swen Wenzel <[email protected]>",
"Tunghsiao Liu <[email protected]>",
"Vishwanath <[email protected]>",
"angleman <[email protected]>",
"cattail <[email protected]>",
"Adam Biggs <[email protected]>",
"ylesaout <[email protected]>",
"Arnold Daniels <[email protected]>",
"Braden Kelley <[email protected]>",
"Christopher Van <[email protected]>",
"Christopher Van <[email protected]>",
"Freddy Knuth <[email protected]>",
"Gavin <[email protected]>"
],
"repository": {
"type": "git",
"url": "git://github.com/vojtajina/grunt-bump.git"
},
"bugs": {
"url": "https://github.com/vojtajina/grunt-bump/issues"
},
"main": "tasks/bump.js",
"engines": {
"node": ">= 0.8.0"
},
"scripts": {
"test": "grunt nodeunit",
"release-major": "grunt release:major",
"release-minor": "grunt release:minor",
"release-patch": "grunt release:patch"
},
"license": "MIT",
"dependencies": {
"semver": "^5.1.0"
},
"peerDependencies": {
"grunt": ">=1.0.1"
},
"devDependencies": {
"grunt": "^1.0.1",
"grunt-auto-release": "^0.0.7",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-jshint": "^1.0.0",
"grunt-contrib-nodeunit": "^1.0.0",
"grunt-conventional-changelog": "^6.1.0",
"grunt-npm": "^0.0.2",
"load-grunt-tasks": "^3.5.0"
},
"keywords": [
"gruntplugin"
]
}