-
Notifications
You must be signed in to change notification settings - Fork 68
/
package.json
64 lines (64 loc) · 1.25 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
59
60
61
62
63
64
{
"name": "gulp-gh-pages",
"version": "0.6.0-6",
"description": "gulp plugin to publish contents to Github pages",
"repository": "shinnn/gulp-gh-pages",
"license": "MIT",
"author": "Micheal Benedict <micheal@visionmasterdesigns.com> (https://github.com/rowoot)",
"contributors": [
"Shinnosuke Watanabe (https://github.com/shinnn)"
],
"keywords": [
"git",
"push",
"commit",
"branch",
"deploy",
"deployment",
"publish",
"site",
"website",
"gulp",
"gulpplugin",
"gh-pages",
"dist",
"github"
],
"files": [
"index.js",
"lib.js"
],
"scripts": {
"pretest": "eslint .",
"test": "nyc mocha test.js --timeout 50000 --full-trace"
},
"dependencies": {
"fancy-log": "^1.3.2",
"gift": "^0.10.2",
"inspect-with-kind": "^1.0.5",
"plugin-error": "^1.0.1",
"rimraf": "^2.6.2",
"vinyl": "^2.2.0",
"vinyl-fs": "^3.0.3"
},
"devDependencies": {
"@shinnn/eslint-config": "^6.8.1",
"eslint": "^5.9.0",
"load-gh-token": "^1.0.0",
"lodash": "^4.17.11",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"nyc-config-common": "^1.0.1",
"octonode": "^0.9.5",
"read-remove-file": "^5.0.1"
},
"eslintConfig": {
"extends": "@shinnn",
"rules": {
"no-underscore-dangle": "off"
}
},
"nyc": {
"extends": "nyc-config-common"
}
}