-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.17 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
{
"name": "md-link-checker-teamcity",
"version": "0.5.0",
"description": "A markdown link checker that integrates with teamcity service messages. ",
"main": "index.js",
"bin": {
"md-link-checker-teamcity": "./index.js"
},
"scripts": {
"lint": "./node_modules/.bin/eslint --format codeframe .",
"test": "./node_modules/mocha/bin/mocha test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/michaelgwelch/md-link-checker-teamcity.git"
},
"keywords": [
"markdown",
"teamcity",
"link",
"checker",
"reporter"
],
"author": "Michael Welch",
"license": "MIT",
"bugs": {
"url": "https://github.com/michaelgwelch/md-link-checker-teamcity/issues"
},
"homepage": "https://github.com/michaelgwelch/md-link-checker-teamcity#readme",
"devDependencies": {
"eslint": "^4.10.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"mocha": "^4.0.1"
},
"dependencies": {
"async": "^2.6.0",
"colors": "^1.2.3",
"globby": "^8.0.1",
"lodash": "^4.17.10",
"markdown-link-check": "^3.3.1",
"minimist": "^1.2.0",
"teamcity-service-messages": "^0.1.9"
}
}