-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
91 lines (91 loc) · 2.89 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "actionsflow-action",
"version": "1.3.0",
"private": true,
"description": "Actionsflow Github Action",
"keywords": [
"actionsflow",
"action"
],
"author": "Owen Young <[email protected]>",
"homepage": "https://github.com/actionsflow/actionsflow-action#readme",
"license": "MIT",
"main": "dist/src/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/actionsflow/actionsflow-action.git"
},
"scripts": {
"start": "tsc -w -p tsconfig.production.json",
"build": "npm run build:main && npm run build:post",
"tsc": "tsc",
"build:main": "npx ncc build src/main.ts -o dist/main -m",
"build:post": "npx ncc build src/post.ts -o dist/post -m",
"test": "jest --passWithNoTests",
"lint": "eslint --fix ./src && prettier --write --loglevel warn ./src",
"commit": "git-cz",
"cm": "npm run commit --",
"prerelease": "npm run build && git add dist/main/index.js dist/post/index.js && git diff-index --quiet HEAD || git commit -m \"chore: 🤖 build bundle\"",
"release": "release-it"
},
"bugs": {
"url": "https://github.com/actionsflow/actionsflow-action/issues"
},
"dependencies": {
"@actions/artifact": "^0.4.2",
"@actions/cache": "^1.0.8",
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.0",
"@actions/github": "^4.0.0",
"@types/command-line-args": "^5.2.0",
"@types/shell-escape": "^0.2.0",
"actionsflow": "^1.12.0",
"command-line-args": "^5.2.0",
"hash-files": "^1.1.1",
"resolve-cwd": "^3.0.0",
"semver": "^7.3.5",
"shell-escape": "^0.2.0",
"string-argv": "^0.3.1"
},
"devDependencies": {
"@commitlint/cli": "^9.1.1",
"@commitlint/config-conventional": "^10.0.0",
"@release-it/conventional-changelog": "^2.0.1",
"@types/jest": "^26.0.24",
"@types/node": "^14.17.34",
"@typescript-eslint/eslint-plugin": "^3.9.0",
"@typescript-eslint/parser": "^3.9.0",
"@vercel/ncc": "^0.23.0",
"cz-conventional-changelog": "^3.2.0",
"del": "^5.1.0",
"dictionary-en": "^3.1.0",
"dotenv": "^8.6.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-jest": "^23.20.0",
"git-cz": "^4.8.0",
"glob": "^7.2.0",
"husky": "^4.3.8",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"micromatch": "^4.0.4",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.0",
"rehype-autolink-headings": "^4.0.0",
"release-it": "^14.11.8",
"retext-diacritics": "^3.0.0",
"retext-emoji": "^7.0.2",
"retext-english": "^3.0.4",
"retext-indefinite-article": "^2.0.3",
"retext-redundant-acronyms": "^3.0.0",
"retext-sentence-spacing": "^4.0.0",
"retext-spell": "^4.0.1",
"retext-syntax-mentions": "^2.1.1",
"retext-syntax-urls": "^2.0.0",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.6",
"tslib": "^2.3.1",
"typescript": "^3.9.10",
"unified": "^9.2.2"
}
}