forked from zillow/seolint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.56 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
{
"name": "@zillowgroup/seolint",
"version": "0.14.2",
"description": "A node based SEO linting tool",
"main": "index.js",
"bin": {
"seolint": "./index.js"
},
"scripts": {
"test": "npm run eslint && npm run mocha",
"mocha": "mocha 'src/**/*-test.js' 'examples/**/*-test.js'",
"mocha-debug": "mocha --inspect-brk 'src/**/*-test.js' 'examples/**/*-test.js'",
"eslint": "eslint 'src/**/*.js' 'examples/**/*.js'",
"prettier": "prettier --single-quote --print-width 120 --tab-width 4 --write 'src/**/*.js' 'examples/**/*.js'",
"prettier-pre-commit": "lib/prettier-pre-commit"
},
"pre-commit": [
"prettier-pre-commit",
"test"
],
"author": {
"name": "Brian Stone",
"email": "[email protected]"
},
"license": "ISC",
"bugs": {
"url": "https://github.com/zillow/seolint/issues"
},
"homepage": "https://github.com/zillow/seolint#readme",
"dependencies": {
"chai": "^3.5.0",
"cheerio": "latest",
"colors": "^1.3.3",
"lodash": "^4.17.11",
"ps-node": "^0.1.6",
"puppeteer": "^1.12.2",
"request": "^2.88.0",
"yargs": "^8.0.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zillow/seolint.git"
},
"keywords": [
"seolint",
"seo",
"lint"
],
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^5.0.0",
"mocha": "^5.2.0",
"pre-commit": "^1.2.2",
"prettier": "^1.16.4",
"sinon": "^4.5.0",
"synchronous-promise": "^2.0.6"
}
}