forked from tschaub/gh-pages
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.05 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
{
"name": "gh-pages",
"version": "0.12.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": {
"pretest": "eslint lib test bin/gh-pages",
"test": "mocha --recursive test"
},
"dependencies": {
"async": "2.1.2",
"commander": "2.9.0",
"globby": "^6.1.0",
"graceful-fs": "4.1.10",
"q": "1.4.1",
"q-io": "2.0.6",
"rimraf": "^2.5.4"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^3.10.2",
"eslint-config-tschaub": "^6.0.0",
"mocha": "^3.1.2"
},
"bin": {
"gh-pages": "bin/gh-pages"
},
"eslintConfig": {
"extends": "tschaub"
}
}