-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
70 lines (70 loc) · 1.94 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
66
67
68
69
70
{
"name": "workflows",
"version": "1.0.0",
"description": "Workflows for creator team.",
"main": "index.js",
"scripts": {
"tag": "node src/github/tag",
"tag-local": "node src/tag",
"upload": "node src/deploy upload",
"download": "node src/download",
"new-branch": "node src/github/new-branch",
"list-pr": "node src/github/list-pr",
"list-5d": "node src/github/list-5d",
"sync-branch": "node src/github/sync-branch",
"delete-branch": "node src/github/delete-branch",
"changelog": "node src/github/changelog",
"clean-issue": "node src/github/clean-issue",
"merge-branch": "node src/github/merge-branch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cocos-creator/workflows.git"
},
"author": "CocosCreator",
"license": "ISC",
"bugs": {
"url": "https://github.com/cocos-creator/workflows/issues"
},
"homepage": "https://github.com/cocos-creator/workflows#readme",
"dependencies": {
"@octokit/graphql": "^2.1.1",
"@octokit/plugin-retry": "^2.2.0",
"@octokit/plugin-throttling": "^2.7.1",
"@octokit/rest": "^16.43.2",
"async": "^2.6.2",
"chalk": "^2.4.2",
"clipboard": "^2.0.6",
"commander": "^2.20.3",
"decompress": "^4.2.1",
"del": "^3.0.0",
"download": "^7.1.0",
"fs-extra": "^7.0.1",
"ftp": "^0.3.10",
"github-markdown-css": "^3.0.1",
"globby": "^8.0.1",
"lodash": "^4.17.19",
"progress": "^2.0.3",
"semver": "^6.3.0",
"showdown": "^1.9.1",
"tree-kill": "^1.2.2"
},
"workflows_settings": {
"paths": {
"fireball": "../fireball",
"cocos2d-x-lite": "../cocos2d-x-lite"
},
"httpProxies": [],
"creatorGithub": {
"token": "",
"owner": "cocos-creator",
"ownerPackages": "cocos-creator-packages",
"storageRepo": "2d-tasks",
"tasksRepo": "2d-tasks",
"ignoreBranches": "^3d\\b"
},
"usernames": {
"jareguo": "郭佳伟"
}
}
}