Skip to content
This repository was archived by the owner on Dec 29, 2020. It is now read-only.

Commit ad532e2

Browse files
committed
Update package.json
* Remove peerDependency entry since it is deprecated * Enchant contributors notes * Add "npm run bump-major" command
1 parent 49936c6 commit ad532e2

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

MAINTAN.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
2. Run a bump script via npm. This will commit and tag the changed files:
88
- `npm run bump` - will increase the patch version;
99
- `npm run bump-minor` - will increase the minor version.
10+
- `npm run bump-major` - will increase the major version.
1011
3. Push changes and tags: `git push --follow-tags`
1112
4. Wait until the Travis-CI build finishes. It will publish a new version into npm.
1213
__DO NOT USE__ `npm publish`! If something goes wrong, Travis will tell us.

package.json

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,13 @@
22
"name": "grunt-jscs",
33
"description": "Grunt task for checking JavaScript Code Style with jscs.",
44
"version": "1.8.0",
5+
"author": {
6+
"name": "Gustavo Henke <[email protected]> and other contributors",
7+
"url": "https://github.com/jscs-dev/grunt-jscs/graphs/contributors"
8+
},
59
"author": "Gustavo Henke <[email protected]>",
610
"license": "MIT",
711
"homepage": "https://github.com/jscs-dev/grunt-jscs",
8-
"contributors": [
9-
"Oleg Gaidarenko <[email protected]>"
10-
],
1112
"repository": {
1213
"type": "git",
1314
"url": "https://github.com/jscs-dev/grunt-jscs.git"
@@ -28,9 +29,6 @@
2829
"load-grunt-tasks": "~1.0.0",
2930
"time-grunt": "~1.0.0"
3031
},
31-
"peerDependencies": {
32-
"grunt": "~0.4.2"
33-
},
3432
"keywords": [
3533
"gruntplugin",
3634
"jscs",
@@ -43,7 +41,8 @@
4341
"scripts": {
4442
"test": "grunt test",
4543
"bump": "npm version patch -m \"Release v%s\"",
46-
"bump-minor": "npm version minor -m \"Release v%s\""
44+
"bump-minor": "npm version minor -m \"Release v%s\"",
45+
"bump-major": "npm version major -m \"Release v%s\""
4746
},
4847
"files": [
4948
"tasks",

0 commit comments

Comments
 (0)