generated from tool3/publisher
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
44 lines (44 loc) · 1.01 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
{
"name": "docsify-action",
"version": "1.5.9",
"description": "publish to npm/github registries",
"main": "index.js",
"scripts": {
"lint": "eslint index.ts",
"package": "ncc build index.ts -o dist",
"test": "eslint index.ts && jest",
"build": "tsc && NODE_OPTIONS=--openssl-legacy-provider ncc build index.ts"
},
"repository": {
"type": "git",
"url": "tool3/docsify-action"
},
"keywords": [
"github-action",
"publish",
"javascript"
],
"author": "Tal Hayut",
"license": "MIT",
"bugs": {
"url": "https://github.com/tool3/docsify-action/issues"
},
"homepage": "https://github.com/tool3/docsify-action",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.0",
"@vercel/ncc": "0.38.2"
},
"devDependencies": {
"eslint": "^8.57.0",
"husky": "^9.1.6",
"jest": "^29.7.0",
"typescript": "5.6.3"
},
"husky": {
"hooks": {
"pre-commit": "npm run build && git add ."
}
}
}