-
Notifications
You must be signed in to change notification settings - Fork 191
/
package.json
58 lines (58 loc) · 1.26 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
57
58
{
"name": "gh-pages",
"version": "6.2.0",
"description": "Publish to a gh-pages branch on GitHub (or any other branch on any other remote)",
"keywords": [
"git",
"gh-pages",
"github"
],
"author": {
"name": "Tim Schaub",
"url": "http://tschaub.net/"
},
"license": "MIT",
"homepage": "https://github.com/tschaub/gh-pages",
"repository": {
"type": "git",
"url": "git://github.com/tschaub/gh-pages.git"
},
"bugs": {
"url": "https://github.com/tschaub/gh-pages/issues"
},
"main": "lib/index.js",
"scripts": {
"lint": "eslint lib test bin plugin.js",
"pretest": "npm run lint",
"test": "mocha --recursive test"
},
"files": [
"lib",
"bin"
],
"engines": {
"node": ">=10"
},
"dependencies": {
"async": "^3.2.4",
"commander": "^11.0.0",
"email-addresses": "^5.0.0",
"filenamify": "^4.3.0",
"find-cache-dir": "^3.3.1",
"fs-extra": "^11.1.1",
"globby": "^11.1.0"
},
"devDependencies": {
"chai": "^4.3.7",
"dir-compare": "^5.0.0",
"eslint": "^9.16.0",
"eslint-config-tschaub": "^15.2.0",
"mocha": "^11.0.1",
"sinon": "^19.0.2",
"tmp": "^0.2.1"
},
"bin": {
"gh-pages": "bin/gh-pages.js",
"gh-pages-clean": "bin/gh-pages-clean.js"
}
}