-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
62 lines (62 loc) · 1.62 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
{
"ava": {
"concurrency": 5,
"failFast": false,
"files": [
"dist/tests/**/*.js"
],
"timeout": "1m"
},
"bin": {
"markdown-link-validator": "./dist/src/bin/markdown-link-validator.js"
},
"dependencies": {
"chalk": "^4.1.1",
"debug": "^4.3.1",
"globby": "^11.0.3",
"lodash.chunk": "^4.2.0",
"optionator": "^0.9.1",
"uslug": "^1.0.4"
},
"devDependencies": {
"@types/debug": "^4.1.5",
"@types/node": "^15.12.1",
"@types/sinon": "^10.0.2",
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@typescript-eslint/parser": "^4.26.1",
"ava": "^3.15.0",
"cpx": "^1.5.0",
"eslint": "^7.28.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-markdown": "^2.2.0",
"mock-require": "^3.0.3",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"sinon": "^11.1.1",
"ts-node": "^10.0.0",
"typescript": "^4.3.2"
},
"description": "Validate markdown links",
"files": [
"dist/src"
],
"homepage": "https://github.com/webhintio/markdown-link-validator#readme",
"keywords": [
"markdown",
"validator"
],
"license": "Apache-2.0",
"name": "markdown-link-validator",
"scripts": {
"build": "npm run clean && npm-run-all build:*",
"build:assets": "cpx \"./{src,tests}/**/{!(*.ts),.!(ts)}\" dist",
"build:ts": "tsc --outDir dist",
"clean": "rimraf dist",
"lint": "eslint --ext ts --ignore-pattern dist .",
"test": "npm run lint && npm run build && nyc ava",
"watch:ts": "npm run build:ts -- --watch"
},
"repository": "webhintio/markdown-link-validator",
"version": "1.0.1"
}