UNPKG

1.32 kBJSONView Raw
1{
2 "name": "gh-pages",
3 "version": "2.0.0",
4 "description": "Publish to a gh-pages branch on GitHub (or any other branch on any other remote)",
5 "keywords": [
6 "git",
7 "gh-pages",
8 "github"
9 ],
10 "author": {
11 "name": "Tim Schaub",
12 "url": "http://tschaub.net/"
13 },
14 "license": "MIT",
15 "homepage": "https://github.com/tschaub/gh-pages",
16 "repository": {
17 "type": "git",
18 "url": "git://github.com/tschaub/gh-pages.git"
19 },
20 "bugs": {
21 "url": "https://github.com/tschaub/gh-pages/issues"
22 },
23 "main": "lib/index.js",
24 "scripts": {
25 "lint": "eslint lib test bin plugin.js",
26 "pretest": "npm run lint",
27 "test": "mocha --recursive test"
28 },
29 "engines": {
30 "node": ">=6"
31 },
32 "dependencies": {
33 "async": "^2.6.1",
34 "commander": "^2.18.0",
35 "email-addresses": "^3.0.1",
36 "filenamify-url": "^1.0.0",
37 "fs-extra": "^7.0.0",
38 "globby": "^6.1.0",
39 "graceful-fs": "^4.1.11",
40 "rimraf": "^2.6.2"
41 },
42 "devDependencies": {
43 "chai": "^4.1.2",
44 "dir-compare": "^1.4.0",
45 "eslint": "^5.5.0",
46 "eslint-config-tschaub": "^12.0.1",
47 "mocha": "^5.2.0",
48 "sinon": "^6.2.0",
49 "tmp": "^0.0.33"
50 },
51 "bin": {
52 "gh-pages": "bin/gh-pages.js",
53 "gh-pages-clean": "bin/gh-pages-clean.js"
54 },
55 "eslintConfig": {
56 "extends": "tschaub"
57 }
58}