-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 1.98 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 1.98 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "github-pages",
"version": "3.0.2",
"description": "Publishes your github pages using the github API",
"main": "build/lib/index.js",
"bin": {
"github-pages": "./build/bin/github-pages.js"
},
"scripts": {
"clean": "rimraf build coverage",
"build": "npm run clean && babel ./src -d build",
"lint": "eslint src tests && jscs src tests",
"start": "node --harmony --harmony_destructuring ./src/bin/github-pages",
"test": "npm run lint && nyc ava",
"deploy:coverage": "codeclimate-test-reporter < .coverage/lcov.info",
"prepublish": "npm run build"
},
"ava": {
"files": [
"tests/"
],
"require": [
"babel-register"
],
"babel": "inherit"
},
"nyc": {
"all": true,
"include": [
"src/"
],
"exclude": [
"src/bin"
],
"reporter": [
"text",
"lcov"
],
"lines": 90,
"function": 90,
"branches": 90,
"check-coverage": false,
"report-dir": ".coverage",
"require": [
"babel-register"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/cantidio/node-github-pages.git"
},
"keywords": [
"git",
"github",
"gh-pages",
"pages",
"ci"
],
"author": "Cantidio Fontes <aniquilatorbloody@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/cantidio/node-github-pages/issues"
},
"homepage": "https://github.com/cantidio/node-github-pages#readme",
"dependencies": {
"github": "^0.2.4",
"ls-all": "^1.1.0",
"meow": "^3.7.0",
"pkg-conf": "^1.1.1"
},
"devDependencies": {
"ava": "^0.13.0",
"babel-cli": "^6.6.5",
"babel-eslint": "^5.0.0",
"babel-plugin-transform-es2015-destructuring": "^6.6.5",
"babel-plugin-transform-object-assign": "^6.5.0",
"codeclimate-test-reporter": "^0.3.1",
"eslint": "^2.4.0",
"eslint-plugin-babel": "^3.1.0",
"estraverse-fb": "^1.3.1",
"jscs": "^2.11.0",
"nyc": "^6.1.1",
"rimraf": "^2.5.2"
}
}