-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (51 loc) · 1.56 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
{
"name": "strip-markdown-extensions-from-links-action",
"version": "1.2.0",
"description": "GitHub action to strip Markdown file extensions from links (useful for making links work with GitHub wiki)",
"main": "src/index.ts",
"repository": {
"type": "git",
"url": "git@github.com:impresscms-dev/strip-markdown-extensions-from-links-action.git"
},
"scripts": {
"test": "jest",
"build": "tsc -p tsconfig.build.json",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint **/*.ts",
"pack": "ncc build --minify",
"all": "npm install && npm run build && npm run format && npm run lint && npm test && npm run pack",
"fast-all": "npm install && npm run build && npm run pack"
},
"keywords": [
"github actions",
"markdown",
"strip",
"extensions"
],
"author": "Raimondas Rimkevičius (aka MekDrop)",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^6.0.0",
"recursive-readdir-sync": "^1.0.6",
"transform-markdown-links": "^2.1"
},
"devDependencies": {
"@jest/globals": "^29.4.1",
"@types/mock-fs": "^4.13.1",
"@types/node": "^22.0.2",
"@typescript-eslint/eslint-plugin": "^7.5",
"@typescript-eslint/parser": "^7.5",
"@vercel/ncc": "^0.38.0",
"eslint": "^8.33.0",
"eslint-plugin-github": "^5.0.1",
"eslint-plugin-jest": "^28.3.0",
"jest": "^29.4.1",
"mock-fs": "^5.2.0",
"prettier": "^3.0.0",
"semver": "^7.3.8",
"ts-jest": "^29.0.5",
"typescript": "^5.0.3"
}
}