generated from actions/javascript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.05 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
{
"name": "juejin-post-action",
"version": "1.0.0",
"description": "掘金文章自动更新",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"prepare": "ncc build index.js -o dist --source-map --license licenses.txt",
"test": "jest",
"all": "npm run lint && npm run prepare && npm run test",
"release": "git tag -fa v1 -m \"Update v1 tag\" && git push origin v1 --force"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SuperHuangXu/juejin-post-action.git"
},
"keywords": [
"GitHub",
"Actions",
"JavaScript"
],
"author": "SuperHuangXu",
"license": "MIT",
"bugs": {
"url": "https://github.com/SuperHuangXu/juejin-post-action/issues"
},
"homepage": "https://github.com/SuperHuangXu/juejin-post-action",
"dependencies": {
"@actions/core": "^1.2.5",
"dayjs": "^1.11.1",
"superagent": "^7.1.3"
},
"devDependencies": {
"@types/superagent": "^4.1.15",
"@vercel/ncc": "^0.31.1",
"eslint": "^8.0.0",
"jest": "^27.2.5",
"prettier": "^2.6.2"
}
}