-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 996 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 996 Bytes
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": "git-workflows",
"version": "1.0.0",
"description": "",
"main": "",
"scripts": {
"all": "npm run build && npm run build:git-deploy && npm run build:git-sync",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"build:git-deploy": "ncc build lib/git-deploy.js -o git-deploy",
"build:git-sync": "ncc build lib/git-sync.js -o git-sync"
},
"repository": {
"type": "git",
"url": "https://github.com//okou19900722/workflows.git"
},
"keywords": [
"git",
"github action",
"git deploy",
"git sync"
],
"author": "okou19900722",
"license": "Apache2",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/exec": "^1.0.4",
"@actions/github": "^4.0.0",
"git-url-parse": "^11.4.3",
"uuid": "^8.3.2"
},
"devDependencies": {
"@types/git-url-parse": "^9.0.0",
"@types/node": "^14.14.20",
"@types/uuid": "^8.3.0",
"@vercel/ncc": "^0.26.1",
"typescript": "^4.1.3"
}
}