This repository was archived by the owner on Jan 6, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 2.19 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 2.19 KB
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
{
"name": "actionsflow-workflow-default",
"private": true,
"description": "A simple workflow to get up and build quickly with Actionsflow",
"version": "1.0.0",
"author": "Owen Young <theowenyoung@gmail.com>",
"devDependencies": {
"@vercel/ncc": "^0.33.1",
"actionsflow": "^1.12.0",
"jest": "^27.4.5",
"prettier": "^2.5.1"
},
"keywords": [
"actionsflow",
"workflow"
],
"license": "0BSD",
"scripts": {
"build": "actionsflow build",
"start": "ACTIONS_LOCAL=true actionsflow start --verbose -- -b",
"watch": "actionsflow start -w --verbose --interval 1 -- -b",
"act": "act --workflows ./dist/workflows --secret-file ./dist/.secrets --eventpath ./dist/event.json --env-file ./dist/.env -P ubuntu-latest=actionsflow/act-environment:v1 -P ubuntu-18.04=actionsflow/act-environment:v1 -b",
"clean": "actionsflow clean",
"test": "echo \"Error: no test specified\" && exit 1",
"build:action": "ncc build .github/actions/translate/src/index.js -e ../locales/zh.json -e puppeteer -o .github/actions/translate/dist",
"build:format": "ncc build .github/actions/format/src/index.js -o .github/actions/format/dist",
"build:meta": "ncc build ./scripts/src/get-metadata.js -o ./scripts/get-metadata",
"build:update": "ncc build ./scripts/src/update-resource.js -o ./scripts/update-resource",
"build:issues": "ncc build ./scripts/src/generate-issues.js -o ./scripts/generate-issues",
"upsite": "node scripts/update-site-info.js"
},
"repository": {
"type": "git",
"url": "https://github.com/actionsflow/actionsflow-workflow-default"
},
"bugs": {
"url": "https://github.com/actionsflow/actionsflow-workflow-default/issues"
},
"dependencies": {
"@actions/core": "^1.6.0",
"axios": "^0.24.0",
"dotenv": "^10.0.0",
"ellipsize": "^0.2.0",
"filelink": "^4.1.2",
"got": "^12.0.0",
"html-to-text": "^8.1.0",
"metascraper": "^5.25.6",
"metascraper-image": "^5.25.6",
"micromatch": "^4.0.4",
"opencc": "^1.1.3",
"puppeteer": "^13.0.1",
"reddit": "^1.2.1",
"string.prototype.replaceall": "^1.0.6",
"tencentcloud-sdk-nodejs": "^4.0.265",
"twit": "^2.2.11",
"youtube-api": "^3.0.1"
}
}