-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
82 lines (82 loc) · 2.07 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
{
"name": "bs-broken-links-checker",
"version": "0.2.0",
"description": "Broken links checker tool for web sites",
"keywords": [
"broken link",
"broken url",
"link",
"url",
"broken",
"checker",
"cli",
"website crawler",
"analyze"
],
"homepage": "http://bem-site.github.io/broken-links-checker",
"repository": {
"type": "git",
"url": "git://github.com/bem-site/broken-links-checker.git"
},
"bugs": {
"url": "https://github.com/bem-site/broken-links-checker/issues",
"email": "[email protected]"
},
"author": {
"name": "Andrey Kuznetsov",
"email": "[email protected]",
"url": "http://github.com/tormozz48"
},
"maintainers": [
"Andrey Kuznetsov <[email protected]> (http://github.com/tormozz48)"
],
"contributors": [
"Andrey Kuznetsov <[email protected]> (http://github.com/tormozz48)"
],
"engines": {
"node": ">= 0.10.0"
},
"bin": {
"blc": "./bin/blc"
},
"dependencies": {
"babel-runtime": "^5.8.20",
"bem-site-logger": "^0.0.x",
"cheerio": "^0.19.x",
"coa": "^1.0.1",
"got": "^4.1.1",
"lodash": "^3.10.1",
"moment": "^2.10.6",
"route-pattern": "0.0.6"
},
"devDependencies": {
"babel": "^5.8.20",
"esdoc": "^0.1.4",
"gulp": "^3.9.0",
"gulp-babel": "^5.2.0",
"gulp-clean": "^0.3.1",
"gulp-esdoc": "0.0.1",
"gulp-gh-pages": "^0.5.2",
"gulp-jscs": "^2.0.0",
"gulp-jshint": "^1.11.2",
"istanbul": "^0.3.x",
"jshint-stylish": "^2.0.1",
"mocha": "~2.2.x",
"mocha-lcov-reporter": "0.0.x",
"mock-fs": "^3.0.0",
"nock": "^2.10.0",
"should": "~6.x"
},
"scripts": {
"codestyle": "gulp codestyle",
"jsdoc": "gulp esdoc",
"publish-doc": "gulp publish-doc",
"compile": "gulp compile",
"pretest": "gulp codestyle && npm run compile",
"prepublish": "gulp compile",
"deps": "npm install && gulp compile",
"test": "NODE_ENV=testing ./node_modules/.bin/istanbul cover _mocha"
},
"readmeFilename": "README.md",
"license": "MPL-2.0"
}