-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
35 lines (35 loc) · 914 Bytes
/
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
{
"name": "links-awakening",
"version": "0.0.0-development",
"description": "Recursively check a website for broken links",
"type": "module",
"main": "dist/index.js",
"bin": {
"links-awakening": "dist/bin.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"format": "prettier \".\" --write --ignore-path \".lintignore\"",
"lint:eslint": "eslint \"**/*.{js,jsx,ts,tsx}\" --ignore-path \".lintignore\"",
"lint:prettier": "prettier \".\" --check --ignore-path \".lintignore\"",
"test": "node --test test/*.test.js"
},
"prettier": "@vercel/style-guide/prettier",
"dependencies": {
"htmlparser2": "8.0.1"
},
"devDependencies": {
"@types/node": "18.11.18",
"@vercel/style-guide": "4.0.2",
"eslint": "8.31.0",
"prettier": "2.8.1",
"typescript": "4.9.4"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18"
}
}