forked from shinnn/gulp-gh-pages
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
57 lines (57 loc) · 1.45 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
{
"name": "gulp-gh-pages",
"version": "0.5.4",
"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"
],
"scripts": {
"pretest": "eslint --config @shinnn/node-legacy --env mocha --rule 'no-underscore-dangle: 0' --rule 'camelcase: 0' index.js test.js lib",
"test": "mocha test.js --timeout 50000 --full-trace",
"test-only": "mocha test.js --timeout 50000 --full-trace",
"coverage": "istanbul cover _mocha test.js -x=test.js -- --timeout 50000"
},
"dependencies": {
"gift": "^0.10.1",
"gulp-util": "^3.0.7",
"readable-stream": "^2.0.4",
"rimraf": "^2.4.4",
"vinyl-fs": "^2.2.1",
"wrap-promise": "^1.0.1"
},
"devDependencies": {
"@shinnn/eslint-config-node-legacy": "^1.0.0",
"eslint": "^1.10.1",
"graceful-fs": "^4.1.2",
"istanbul": "^0.4.1",
"log-symbols": "^1.0.2",
"mocha": "^2.3.4",
"node-uuid": "^1.4.7",
"octonode": "^0.7.4",
"read-remove-file": "^3.0.0",
"vinyl": "^1.1.0"
}
}