This repository has been archived by the owner on Jan 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.15 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
{
"name": "@release-flow/keep-a-changelog-action-toolkit",
"version": "0.0.1-local.0",
"description": "A toolkit library containing common helper code that is shared across @release-flow GitHub Actions",
"type": "module",
"author": "Release Flow <[email protected]>",
"license": "ISC",
"keywords": [
"release-flow",
"internal"
],
"main": "./dist/index.js",
"types": "./index.d.ts",
"typesVersions": {
"*": {
"index.d.ts": [
"dist/index.d.ts"
]
}
},
"files": [
"/dist"
],
"scripts": {
"clean": "shx rm -rf dist",
"build": "tsc",
"start": "node dist/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"all": "npm run clean && npm run build && npm run format-check && npm run lint"
},
"engines": {
"node": ">=16.17.0"
},
"repository": {
"type": "git",
"url": "https://github.com/release-flow/keep-a-changelog-action-toolkit.git"
},
"devDependencies": {
"@jest/globals": "^29.3.1",
"@types/jest": "^29.2.4",
"@types/mdast": "^3.0.10",
"@types/node": "^18.11.17",
"@types/semver": "^7.3.13",
"@types/unist": "^2.0.6",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"eslint-import-resolver-typescript": "^3.5.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.7",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.3.1",
"jest-diff": "^29.3.1",
"shx": "^0.3.4",
"typescript": "^4.9.4"
},
"dependencies": {
"@types/uuid": "^9.0.0",
"date-fns": "^2.29.3",
"remark": "^14.0.2",
"remark-stringify": "^10.0.2",
"semver": "^7.3.8",
"to-vfile": "^7.2.3",
"unified": "^10.1.2",
"unist-util-find-all-after": "^4.0.0",
"unist-util-find-all-between": "^2.1.0",
"unist-util-is": "^5.1.1",
"unist-util-remove": "^3.1.0",
"unist-util-visit": "^4.1.1",
"uuid": "^9.0.0",
"vfile": "^5.3.6",
"vfile-reporter": "^7.0.4"
}
}