-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
64 lines (64 loc) · 1.72 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": "actions-publish-gh-pages",
"version": "1.0.2",
"description": "GitHub Actions to publish static website using GitHub Pages",
"bugs": {
"url": "https://github.com/tsunematsu21/actions-publish-gh-pages/issues",
"email": "[email protected]"
},
"license": "MIT",
"author": {
"name": "tsunematsu21",
"email": "[email protected]",
"url": "(https://github.com/tsunematsu21"
},
"main": "lib/main.js",
"repository": {
"type": "git",
"url": "https://github.com/tsunematsu21/actions-publish-gh-pages.git"
},
"scripts": {
"lint": "eslint src/**/*.ts __tests__/**/*.ts",
"test": "jest",
"build": "ncc build src/index.ts -o lib",
"doc": "typedoc src"
},
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/exec": "^1.0.1",
"@actions/github": "^2.1.1",
"@actions/io": "^1.0.1"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@types/jest": "^26.0.23",
"@types/node": "^12.12.12",
"@typescript-eslint/eslint-plugin": "^2.8.0",
"@typescript-eslint/parser": "^2.8.0",
"@zeit/ncc": "^0.20.5",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-prettier": "^3.1.1",
"husky": "^3.1.0",
"jest": "^27.0.6",
"jest-circus": "^27.0.6",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.1",
"ts-jest": "^27.0.3",
"typedoc": "^0.21.2",
"typescript": "^4.3.5"
},
"private": true,
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"pre-commit": "run-s lint test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}