-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.38 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": "@sector-labs/seo-slip",
"version": "1.0.9",
"description": "Catches SEO regressions by sampling and checking a website against a set of rules",
"main": "index.js",
"scripts": {
"test": "mocha \"./test/**/*.test.js\"",
"test:format": "prettier --check '**/*.{js,css,json,md}'",
"format": "prettier --write '**/*.{js,css,json,md}'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SectorLabs/seo-slip.git"
},
"keywords": [
"seo",
"slip",
"regression",
"rules"
],
"author": "Cristi Ingineru <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/SectorLabs/seo-slip/issues"
},
"homepage": "https://github.com/SectorLabs/seo-slip#readme",
"files": [
"src",
"index.js",
"package.json",
"LICENSE",
"*.md",
"!node_modules",
"!.gitignore",
"!.npmrc",
"!.prettierrc.json",
"!.prettierignore"
],
"dependencies": {
"csv-parse": "^4.15.3",
"node-fetch": "^2.6.7",
"robots-parser": "^2.3.0",
"simplecrawler": "^1.1.9",
"xpath-html": "^1.0.2"
},
"devDependencies": {
"mocha": "^9.2.0",
"mock-require": "^3.0.3",
"prettier": "2.2.1",
"sinon": "^13.0.1"
}
}