-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
71 lines (71 loc) · 1.81 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
65
66
67
68
69
70
71
{
"name": "deploy-to-github-pages",
"version": "1.0.1",
"description": "A Node library that makes deploying a directory on a branch to GitHub pages easy and automatic.",
"bin": {
"deploy-to-github-pages": "bin/deploy-to-github-pages.js"
},
"main": "index.js",
"files": [
"bin/",
"lib/"
],
"scripts": {
"test": "yarn test:once --watch",
"test:once": "jest",
"lint": "eslint '**/*.js'",
"lint:fix": "yarn lint --fix",
"check-changelog": "release-to-github-with-changelog-pre-release-checks",
"release-to-github": "release-to-github-with-changelog"
},
"repository": {
"type": "git",
"url": "git+https://github.com/oliverviljamaa/deploy-to-github-pages.git"
},
"keywords": [
"deploy",
"gh-pages",
"github",
"pages",
"circleci",
"branch"
],
"author": "Oliver Viljamaa",
"license": "MIT",
"bugs": {
"url": "https://github.com/oliverviljamaa/deploy-to-github-pages/issues"
},
"homepage": "https://github.com/oliverviljamaa/deploy-to-github-pages#readme",
"dependencies": {
"@octokit/rest": "^15.15.1",
"commander": "^2.19.0",
"gh-pages": "^3.1.0",
"shelljs": "^0.8.2"
},
"devDependencies": {
"@transferwise/eslint-config": "4.0.1",
"eslint": "^6.5.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.15.1",
"eslint-plugin-react-hooks": "^1.7.0",
"husky": "^3.0.9",
"jest": "^23.6.0",
"lint-staged": "^9.4.2",
"prettier": "^1.18.2",
"release-to-github-with-changelog": "^1.2.0"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"prettier": "@transferwise/eslint-config/.prettierrc.js"
}