-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.17 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
{
"name": "img-link-checker",
"version": "1.2.0",
"description": "Check any file for broken links and images",
"main": "index.js",
"engines": {
"node": ">=8.x.x"
},
"scripts": {
"lint": "node ./node_modules/.bin/eslint *.js **/*.js",
"patch": "npm version patch -m \"Bumped up package version to %s\" && git push && git push origin --tags && npm publish",
"minor": "npm version minor -m \"Bumped up package version to %s\" && git push && git push origin --tags && npm publish",
"major": "npm version major -m \"Bumped up package version to %s\" && git push && git push origin --tags && npm publish",
"test": "node ./tests/links.test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/Marketionist/img-link-checker"
},
"keywords": [
"check links",
"check-links",
"find broken links",
"find-broken-links",
"img link checker",
"img-link-checker",
"image link checker",
"image-link-checker",
"check links in md",
"check-links-in-md"
],
"author": "Dmytro Shpakovskyi",
"license": "MIT",
"dependencies": {
"axios": "^1.7.4"
},
"devDependencies": {
"eslint": "^8.57.0"
}
}