-
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Require Node.js 8, require Grunt 1, upgrade
pageres
- Loading branch information
1 parent
3003f0c
commit 2bd423b
Showing
9 changed files
with
157 additions
and
130 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1 @@ | ||
* text=auto | ||
*.js text eol=lf | ||
* text=auto eol=lf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
node_modules | ||
yarn.lock |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
package-lock=false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
os: osx | ||
language: node_js | ||
node_js: | ||
- '10' | ||
- '8' | ||
- '6' | ||
- '4' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,75 +1,68 @@ | ||
{ | ||
"name": "grunt-pageres", | ||
"version": "3.0.0", | ||
"description": "Capture website screenshots", | ||
"license": "MIT", | ||
"repository": "sindresorhus/grunt-pageres", | ||
"author": { | ||
"name": "Sindre Sorhus", | ||
"email": "[email protected]", | ||
"url": "sindresorhus.com" | ||
}, | ||
"maintainers": [ | ||
{ | ||
"name": "Kevin Mårtensson", | ||
"email": "[email protected]", | ||
"url": "github.com/kevva" | ||
} | ||
], | ||
"engines": { | ||
"node": ">=4" | ||
}, | ||
"scripts": { | ||
"test": "xo && grunt && ava && trash tmp" | ||
}, | ||
"files": [ | ||
"tasks" | ||
], | ||
"keywords": [ | ||
"gruntplugin", | ||
"pageres", | ||
"page", | ||
"website", | ||
"site", | ||
"web", | ||
"url", | ||
"resolution", | ||
"size", | ||
"screenshot", | ||
"screenshots", | ||
"screengrab", | ||
"screen", | ||
"snapshot", | ||
"shot", | ||
"responsive", | ||
"gulpfriendly", | ||
"phantom", | ||
"phantomjs", | ||
"image", | ||
"svg", | ||
"render", | ||
"html", | ||
"headless", | ||
"capture", | ||
"pic", | ||
"picture", | ||
"png", | ||
"jpg", | ||
"jpeg" | ||
], | ||
"dependencies": { | ||
"arrify": "^1.0.0", | ||
"pageres": "^4.1.0" | ||
}, | ||
"devDependencies": { | ||
"ava": "*", | ||
"grunt": "^1.0.1", | ||
"grunt-cli": "^1.2.0", | ||
"path-exists": "^3.0.0", | ||
"trash-cli": "^1.1.0", | ||
"xo": "*" | ||
}, | ||
"peerDependencies": { | ||
"grunt": ">=0.4.0" | ||
} | ||
"name": "grunt-pageres", | ||
"version": "3.0.0", | ||
"description": "Capture website screenshots", | ||
"license": "MIT", | ||
"repository": "sindresorhus/grunt-pageres", | ||
"author": { | ||
"name": "Sindre Sorhus", | ||
"email": "[email protected]", | ||
"url": "sindresorhus.com" | ||
}, | ||
"engines": { | ||
"node": ">=8" | ||
}, | ||
"scripts": { | ||
"test": "xo && grunt && ava && del-cli temp" | ||
}, | ||
"files": [ | ||
"tasks" | ||
], | ||
"keywords": [ | ||
"gruntplugin", | ||
"pageres", | ||
"page", | ||
"website", | ||
"site", | ||
"web", | ||
"url", | ||
"resolution", | ||
"size", | ||
"screenshot", | ||
"screenshots", | ||
"screengrab", | ||
"screen", | ||
"snapshot", | ||
"shot", | ||
"responsive", | ||
"gulpfriendly", | ||
"puppeteer", | ||
"chrome", | ||
"image", | ||
"svg", | ||
"render", | ||
"html", | ||
"headless", | ||
"capture", | ||
"pic", | ||
"picture", | ||
"png", | ||
"jpg", | ||
"jpeg" | ||
], | ||
"dependencies": { | ||
"arrify": "^1.0.0", | ||
"pageres": "^5.0.1" | ||
}, | ||
"devDependencies": { | ||
"ava": "^1.2.0", | ||
"del-cli": "^1.1.0", | ||
"grunt": "^1.0.1", | ||
"grunt-cli": "^1.2.0", | ||
"path-exists": "^3.0.0", | ||
"xo": "^0.24.0" | ||
}, | ||
"peerDependencies": { | ||
"grunt": ">=1" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.