generated from actions/javascript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 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
{
"name": "sync-to-qiniu-action",
"private": true,
"version": "1.0.0",
"description": "synchronize the files in the specified path to qiniu",
"main": "./dist/index.js",
"scripts": {
"lint": "eslint src/index.js",
"build": "ncc -m build ./src/index.js -o dist",
"build:test": "ncc -m build ./.github/actions/test/index.js -o ./.github/actions/test/dist",
"test": "git tag -d run-test && git tag run-test && git push origin run-test -f"
},
"repository": {
"type": "git",
"url": "git+https://github.com/laoergege/sync-to-qiniu-action"
},
"keywords": [
"GitHub",
"Actions",
"JavaScript",
"Qiniu"
],
"author": "laoergege",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.2.3",
"@actions/exec": "^1.0.3",
"@actions/github": "^2.1.1",
"@actions/io": "^1.0.2",
"dayjs": "^1.8.24",
"qiniu": "^7.3.0",
"simple-git": "^1.132.0"
},
"devDependencies": {
"@zeit/ncc": "^0.20.5",
"eslint": "^6.3.0",
"jest": "^24.9.0"
}
}