-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
43 lines (43 loc) · 1.04 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
{
"name": "seo-checker",
"version": "0.3.2",
"description": "A library for checking basic SEO signals of a website",
"main": "src/index.js",
"scripts": {
"test": "grunt nodeunit"
},
"repository": {
"type": "git",
"url": "https://github.com/Clever-Labs/seo-checker.git"
},
"keywords": [
"SEO",
"HTML",
"parser",
"crawler"
],
"author": "Bill Patrianakos @ Clever Labs",
"license": "MIT",
"bugs": {
"url": "https://github.com/Clever-Labs/seo-checker/issues"
},
"homepage": "https://github.com/Clever-Labs/seo-checker",
"dependencies": {
"cheerio": "^0.18.0",
"request": "^2.51.0",
"simplecrawler": "^0.3.10",
"valid-url": "^1.0.9"
},
"devDependencies": {
"grunt": "^0.4.5",
"grunt-contrib-jshint": "^0.10.0",
"grunt-contrib-nodeunit": "^0.4.1",
"grunt-contrib-watch": "^0.6.1",
"grunt-docco": "^0.3.3",
"grunt-shell": "^1.1.1",
"grunt-todos": "^0.3.0",
"jshint-stylish": "^1.0.0",
"load-grunt-tasks": "^2.0.0",
"time-grunt": "^1.0.0"
}
}