-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
78 lines (78 loc) · 2.11 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": "repo-link-check",
"version": "0.14.2",
"description": "A multi-target library for ensuring all links in a file are alive",
"main": "index.js",
"author": "RMP",
"license": "MIT",
"private": false,
"scripts": {
"prepare": "node -e \"if (process.env.NODE_ENV !== 'production'){process.exit(1)} \" || husky install",
"build": "webpack",
"lint": "eslint --cache --fix '**/*.{js,ts}' && tsc --noEmit",
"format": "prettier --write '**/*.{js,ts,json,yml,md}'"
},
"devDependencies": {
"@babel/core": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@babel/preset-typescript": "^7.22.5",
"@types/commander": "^2.12.2",
"@types/js-yaml": "^4.0.5",
"@types/lodash": "^4.14.195",
"@types/node-fetch": "^2.6.4",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"babel-jest": "^29.6.1",
"copy-webpack-plugin": "^11.0.0",
"cross-env": "^7.0.3",
"eslint": "^8.45.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^5.0.0",
"husky": ">=8.0.3",
"jest": "^29.6.1",
"lint-staged": ">=13.2.3",
"prettier": "^3.0.0",
"terser-webpack-plugin": "^5.3.9",
"ts-loader": "^9.4.4",
"typescript": "^5.1.6",
"webpack": "^5.88.1",
"webpack-bundle-analyzer": "^4.9.0",
"webpack-cli": "^5.1.4",
"webpack-merge": "^5.9.0",
"webpack-node-externals": "^3.0.0"
},
"dependencies": {
"bottleneck": "^2.19.5",
"commander": "^11.0.0",
"execa": "^7.1.1",
"fast-glob": "^3.3.0",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"micromatch": "^4.0.5",
"node-fetch": "^3.3.1"
},
"engines": {
"node": ">=12.0.0"
},
"files": [
"dist/**/*"
],
"bin": {
"repo-link-check": "./dist/cli.js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"repository": {
"type": "git",
"url": "https://github.com/iterative/link-check.git"
},
"lint-staged": {
"*.{js,ts}": "eslint --cache --fix",
"*.{js,ts,json,md}": "prettier --write"
}
}