forked from tcort/markdown-link-check
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
109 lines (109 loc) · 2.87 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "@boillodmanuel/markdown-link-check",
"version": "4.7.0",
"description": "checks the all of the hyperlinks in a markdown text to determine if they are alive or dead",
"bin": {
"markdown-link-check": "./bin/markdown-link-check"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"getVersion": "node -e \"console.log(require('./package.json').version)\"",
"format": "prettier --write \"{src,test}/**/*.ts\"",
"lint": "eslint . --ext .ts",
"test": "mocha --exit",
"build": "npm run lint && npm run build-ts",
"build-ts": "rm -rf ./dist && tsc -p tsconfig-build.json",
"preversion": "npm run format && npm test && npm run build",
"version": "version-changelog CHANGELOG.md && changelog-verify CHANGELOG.md && git add CHANGELOG.md",
"postversion": "git push && git push --tags"
},
"files": [
"dist/**/*"
],
"repository": {
"type": "git",
"url": "git://github.com/tcort/markdown-link-check.git"
},
"keywords": [
"markdown",
"md",
"link",
"hyperlink",
"href",
"check",
"checker"
],
"author": "Thomas Cort <[email protected]>",
"contributors": [
"Manuel Boillod"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/boillodmanuel/markdown-link-check/issues"
},
"homepage": "https://github.com/boillodmanuel/markdown-link-check#readme",
"dependencies": {
"@boillodmanuel/link-check": "^5.4.0",
"async": "^3.2.0",
"chalk": "^4.1.0",
"commander": "^6.1.0",
"lodash": "^4.17.20",
"markdown-link-extractor": "^1.2.6",
"progress": "^2.0.3",
"request": "^2.88.2"
},
"devDependencies": {
"@types/async": "^3.2.5",
"@types/expect.js": "^0.3.29",
"@types/express": "^4.17.9",
"@types/lodash": "^4.14.165",
"@types/mocha": "^8.0.4",
"@types/node": "^14.14.10",
"@types/progress": "^2.0.3",
"@types/request": "^2.48.5",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"changelog-verify": "^1.1.2",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"expect.js": "^0.3.1",
"express": "^4.17.1",
"jshint": "^2.12.0",
"mocha": "^8.1.3",
"prettier": "^2.2.0",
"ts-node": "^9.0.0",
"typescript": "^4.1.2",
"version-changelog": "^3.1.1"
},
"jshintConfig": {
"esversion": 6,
"bitwise": true,
"curly": true,
"eqeqeq": true,
"forin": true,
"freeze": true,
"globalstrict": true,
"immed": true,
"indent": 4,
"moz": true,
"newcap": true,
"noarg": true,
"node": true,
"noempty": true,
"nonew": true,
"trailing": true,
"undef": true,
"smarttabs": true,
"strict": true,
"validthis": true,
"globals": {
"describe": false,
"it": false,
"before": false,
"beforeEach": false,
"after": false,
"afterEach": false
}
}
}