forked from technote-space/toc-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.87 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
{
"name": "@technote-space/toc-generator",
"version": "2.4.8",
"description": "GitHub Action to generate TOC.",
"author": {
"name": "Technote",
"email": "[email protected]",
"url": "https://technote.space"
},
"license": "MIT",
"keywords": [
"github",
"github actions",
"toc"
],
"homepage": "https://github.com/technote-space/toc-generator",
"repository": {
"type": "git",
"url": "https://github.com/technote-space/toc-generator.git"
},
"bugs": {
"url": "https://github.com/technote-space/toc-generator/issues"
},
"files": [
"lib",
"action.yml"
],
"dependencies": {
"@actions/core": "^1.2.4",
"@technote-space/github-action-helper": "^3.1.1",
"@technote-space/github-action-pr-helper": "^1.8.6",
"doctoc": "^1.4.0",
"fast-glob": "^3.2.4",
"update-section": "^0.3.3"
},
"devDependencies": {
"@actions/github": "^4.0.0",
"@commitlint/cli": "^9.1.1",
"@commitlint/config-conventional": "^9.1.1",
"@technote-space/github-action-test-helper": "^0.5.4",
"@technote-space/release-github-actions-cli": "^1.6.8",
"@types/jest": "^26.0.7",
"@types/node": "^14.0.27",
"@typescript-eslint/eslint-plugin": "^3.7.1",
"@typescript-eslint/parser": "^3.7.1",
"eslint": "^7.5.0",
"husky": "^4.2.5",
"jest": "^26.1.0",
"jest-circus": "^26.1.0",
"lint-staged": "^10.2.11",
"nock": "^13.0.3",
"ts-jest": "^26.1.4",
"typescript": "^3.9.7"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc",
"test": "yarn lint && yarn cover",
"lint": "eslint 'src/**/*.ts' '__tests__/**/*.ts' --cache",
"lint:fix": "eslint --fix 'src/**/*.ts' '__tests__/**/*.ts'",
"cover": "jest --coverage",
"update": "npx npm-check-updates -u && yarn install && yarn upgrade && yarn audit",
"release": "yarn release-ga --test"
}
}