-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
90 lines (90 loc) · 2.75 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
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "linkscanner",
"version": "0.2.3",
"description": "A CLI and node library to scan a source URL and recursively check URLs",
"repository": {
"type": "git",
"url": "github:gburgett/linkscanner"
},
"main": "dist/index.js",
"bin": {
"linkscanner": "bin/linkscanner"
},
"files": [
"dist/**/*",
"bin/**/*",
"vendor/**/*"
],
"scripts": {
"lint": "tslint 'src/**/*.ts'",
"fix": "tslint --fix 'src/**/*.ts'",
"test-cover": "tsc --project tsconfig.test.json && nyc mocha 'src/**/*.test.js' 'src/**/*.test.node.js'",
"test-node": "mocha --require ts-node/register src/*.test.ts src/**/*.test.ts src/**/*.test.node.ts",
"test-browser": "npm run clean && karma start",
"test-watch": "nodemon --watch src/ -e ts --exec 'npm run test-node || echo \"failed\"'",
"test": "npm run test-node && npm run test-browser",
"coverage": "npm run test-cover && nyc report --reporter=html && open coverage/index.html",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"build": "tsc",
"prepublishOnly": "npm run build",
"clean": "rm -rf dist; bash -c 'shopt -s globstar; rm src/**/*.js src/**/*.map src/**/*.d.ts'; true"
},
"keywords": [
"linkchecker",
"broken-link-checker",
"link",
"scan",
"check"
],
"author": "Gordon Burgett (gordon@gordonburgett.net)",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.3.3",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.3.1",
"@babel/preset-typescript": "^7.3.3",
"@types/chai": "^4.1.7",
"@types/chalk": "^2.2.0",
"@types/cheerio": "^0.22.11",
"@types/express": "^4.17.0",
"@types/fetch-mock": "^7.2.3",
"@types/mocha": "^5.2.6",
"@types/whatwg-url": "^6.4.0",
"@types/yargs": "^13.0.0",
"awesome-ts-loader": "^1.3.1",
"babel-loader": "^8.0.5",
"chai": "^4.2.0",
"coveralls": "^3.0.3",
"express": "^4.17.1",
"globby": "^9.0.0",
"karma": "^4.0.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^3.0.5",
"mocha": "^5.2.0",
"nodemon": "^1.18.10",
"nyc": "^13.3.0",
"ts-loader": "^5.3.3",
"ts-node": "^8.0.2",
"tslint": "^5.12.1",
"tslint-eslint-rules": "^5.4.0",
"typescript": "^3.2.4",
"webpack": "^4.29.5",
"webpack-cli": "^3.2.3"
},
"dependencies": {
"async-toolbox": "^0.4.2",
"chalk": "^2.4.2",
"cheerio": "^1.0.0-rc.3",
"cross-fetch": "^3.0.2",
"es6-promise": "^4.2.6",
"fetch-mock": "^7.3.3",
"universal-url": "^2.0.0",
"yargs": "^13.2.4"
}
}