1 | {
|
2 | "name": "gh-pages",
|
3 | "version": "6.2.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 | "files": [
|
30 | "lib",
|
31 | "bin"
|
32 | ],
|
33 | "engines": {
|
34 | "node": ">=10"
|
35 | },
|
36 | "dependencies": {
|
37 | "async": "^3.2.4",
|
38 | "commander": "^11.0.0",
|
39 | "email-addresses": "^5.0.0",
|
40 | "filenamify": "^4.3.0",
|
41 | "find-cache-dir": "^3.3.1",
|
42 | "fs-extra": "^11.1.1",
|
43 | "globby": "^11.1.0"
|
44 | },
|
45 | "devDependencies": {
|
46 | "chai": "^4.3.7",
|
47 | "dir-compare": "^5.0.0",
|
48 | "eslint": "^8.32.0",
|
49 | "eslint-config-tschaub": "^14.1.2",
|
50 | "mocha": "^10.2.0",
|
51 | "sinon": "^19.0.2",
|
52 | "tmp": "^0.2.1"
|
53 | },
|
54 | "bin": {
|
55 | "gh-pages": "bin/gh-pages.js",
|
56 | "gh-pages-clean": "bin/gh-pages-clean.js"
|
57 | },
|
58 | "eslintConfig": {
|
59 | "extends": "tschaub",
|
60 | "rules": {
|
61 | "jsdoc/check-examples": "off"
|
62 | }
|
63 | }
|
64 | }
|