-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.54 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.54 KB
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
{
"name": "crawl",
"version": "1.0.0",
"description": "A CLI tool to crawl websites and determine broken links.",
"author": "Matt Kornatz <[email protected]>",
"license": "MIT",
"main": "index.js",
"module": "src/crawler.js",
"bin": {
"crawl": "index-cli.js"
},
"engines": {
"node": ">=12.11.1 <13"
},
"scripts": {
"prettier": "prettier --write \"**/*.{mjs,js,jsx,json,md}\"",
"test": "mocha --opts test/mocha.opts test/**/*.{unit,integration,acceptance}.js",
"test:vsdebug:file": "mocha --opts test/mocha.opts --inspect-brk=16672",
"test:vsdebug:grep": "mocha --opts test/mocha.opts --inspect-brk=16672 test/**/*.{unit,integration,acceptance}.js -g"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "npm test"
}
},
"dependencies": {
"async": "^3.0.1",
"axios": "^0.21.1",
"cheerio": "^1.0.0-rc.3",
"commander": "^2.20.1",
"esm": "^3.2.25",
"events": "^3.0.0",
"lodash": "^4.17.21",
"request": "^2.88.0",
"url": "^0.11.0",
"url-parse": "^1.5.0",
"winston": "^3.2.1"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^4.17.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"husky": "^3.0.8",
"lint-staged": "^9.4.1",
"mocha": "^5.0.0",
"prettier": "^1.18.2",
"sinon": "^7.5.0",
"sinon-chai": "^3.3.0",
"static-server": "^3.0.0"
},
"lint-staged": {
"*.{mjs,js,json}": [
"npm run prettier",
"git add"
]
}
}