forked from peaceiris/actions-mdbook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.61 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
{
"name": "actions-mdbook",
"version": "1.1.14",
"description": "GitHub Actions for mdBook",
"main": "lib/index.js",
"scripts": {
"lint": "eslint ./src/**/*.ts",
"lint:fix": "eslint --fix ./src/**/*.ts",
"test": "jest --coverage --verbose",
"build": "ncc build ./src/index.ts -o lib",
"tsc": "tsc",
"format": "prettier --write **/*.ts",
"format:check": "prettier --check **/*.ts",
"release": "standard-version"
},
"lint-staged": {
"src/**/*.ts": [
"prettier --check",
"eslint",
"jest --bail --findRelatedTests"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/peaceiris/actions-mdbook.git"
},
"keywords": [
"GitHub",
"Actions",
"JavaScript",
"TypeScript",
"mdBook",
"Setup"
],
"author": "peaceiris",
"license": "MIT",
"bugs": {
"url": "https://github.com/peaceiris/actions-mdbook/issues"
},
"homepage": "https://github.com/peaceiris/actions-mdbook#readme",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/exec": "^1.0.4",
"@actions/io": "^1.0.2",
"@actions/tool-cache": "^1.6.1",
"node-fetch": "^2.6.1"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/node": "~12",
"@types/node-fetch": "^2.5.8",
"@typescript-eslint/parser": "^4.15.0",
"@vercel/ncc": "^0.27.0",
"eslint": "^7.19.0",
"husky": "^5.0.9",
"jest": "^26.6.3",
"jest-circus": "^26.6.3",
"lint-staged": "^10.5.4",
"nock": "^13.0.7",
"prettier": "2.2.1",
"standard-version": "^9.1.0",
"ts-jest": "^26.5.1",
"typescript": "^4.1.4"
}
}