-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.12 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
{
"name": "@khatastroffik/grunt-standard-version",
"description": "Grunt.js plugin with automatic versioning (unsing 'semver') and CHANGELOG generation (using 'standard-version')",
"version": "1.1.0",
"homepage": "https://github.com/khatastroffik/grunt-standard-version",
"author": {
"name": "Loïs Bégué",
"url": "https://github.com/khatastroffik"
},
"repository": {
"type": "git",
"url": "git://github.com/khatastroffik/grunt-standard-version.git"
},
"bugs": {
"url": "https://github.com/khatastroffik/grunt-standard-version/issues"
},
"license": "MIT",
"engines": {
"node": ">= 8.0.0"
},
"scripts": {
"test": "grunt test",
"version": "grunt version"
},
"dependencies": {
"standard-version": "^7.1.0"
},
"devDependencies": {
"grunt-contrib-jshint": "^2.1.0",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-nodeunit": "^2.1.0",
"grunt": "~1.1.0"
},
"keywords": [
"gruntplugin",
"grunt",
"grunt-task",
"CHANGELOG",
"semver",
"GitHub",
"release",
"release-automation",
"conventional-commit",
"standard-version"
]
}