-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
56 lines (56 loc) · 1.18 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
{
"name": "grunt-gh-pages",
"description": "Publish to GitHub Pages with Grunt.",
"version": "4.0.0",
"homepage": "https://github.com/tschaub/grunt-gh-pages",
"author": "Tim Schaub (http://tschaub.net/)",
"repository": {
"type": "git",
"url": "git://github.com/tschaub/grunt-gh-pages.git"
},
"bugs": {
"url": "https://github.com/tschaub/grunt-gh-pages/issues"
},
"license": "MIT",
"main": "tasks/gh-pages.js",
"scripts": {
"eslint": "eslint .",
"pretest": "npm run eslint",
"test": "grunt test"
},
"dependencies": {
"async": "^3.2.0",
"fs-extra": "^8.1.0",
"graceful-fs": "^4.2.3",
"url-safe": "^2.0.0"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^5.16.0",
"eslint-config-tschaub": "^13.1.0",
"grunt": "^1.0.3",
"grunt-contrib-watch": "^1.1.0",
"grunt-mocha-test": "^0.13.3",
"mocha": "^7.1.1",
"tmp": "^0.1.0"
},
"peerDependencies": {
"grunt": ">=0.4.0"
},
"eslintConfig": {
"extends": "tschaub"
},
"keywords": [
"gruntplugin",
"git",
"grunt",
"gh-pages",
"github"
],
"files": [
"{lib,tasks}/*.js"
],
"engines": {
"node": ">=6"
}
}