-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·52 lines (52 loc) · 1.2 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
{
"name": "url_checker",
"author": "Tyler Kelly",
"version": "0.1.0",
"description": "Tool for checking all the links on a page, or a portion of it.",
"license": "Apache-2.0",
"main": "src/cli.ts",
"type": "module",
"bin": "./dist/cli.js",
"scripts": {
"apis": "typedoc",
"build": "npm install && tsc",
"packer": "npm run build && npm pack"
},
"typedocOptions": {
"entryPoints": [
"src/cli.ts"
],
"out": "docs"
},
"files": [
"src",
"dist",
"LICENCE.txt",
"README.md"
],
"dependencies": {
"commander": "^8.3.0",
"js-yaml": "^4.1.0",
"jsdom": "^18.0.0",
"needle": "^3.0.0",
"typescript": "^4.4.4"
},
"devDependencies": {
"@types/js-yaml": "^4.0.4",
"@types/jsdom": "^16.2.13",
"@types/needle": "^2.5.2",
"@types/node": "^16.11.19",
"@types/yargs": "^17.0.5",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.1",
"typedoc": "^0.22.10"
},
"engines": {
"node": ">=10.0"
}
}