-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
49 lines (49 loc) · 1.05 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
{
"name": "grunt-version",
"description": "Grunt task to handle versioning of a project.",
"version": "3.0.1",
"homepage": "https://github.com/kswedberg/grunt-version",
"author": {
"name": "Karl Swedberg",
"email": "kswedberg@gmail.com",
"url": "http://karlswedberg.com/"
},
"repository": {
"type": "git",
"url": "git://github.com/kswedberg/grunt-version.git"
},
"bugs": {
"url": "https://github.com/kswedberg/grunt-version/issues"
},
"licenses": [
{
"type": "MIT",
"url": "http://kswedberg.mit-license.org/"
}
],
"main": "Gruntfile.js",
"engines": {
"node": ">=10"
},
"scripts": {
"test": "grunt test"
},
"dependencies": {
"grunt": "^1.6.1",
"semver": "^7.6.3"
},
"devDependencies": {
"eslint-config-kswedberg": "^5.4.1",
"grunt-contrib-clean": "^2.0.1",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-nodeunit": "^5.0.0",
"grunt-eslint": "^24.3.0"
},
"keywords": [
"gruntplugin",
"version",
"versioning",
"bump",
"semver"
]
}