-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.35 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
{
"name": "seo-simple-checker",
"version": "1.0.2",
"description": "Simple HTML SEO rules checker",
"main": "index.js",
"scripts": {
"dev": "yarn test && webpack --mode development",
"build": "yarn test && webpack --mode production",
"test": "mocha test/*.js --compilers js:babel-core/register"
},
"repository": {
"type": "git",
"url": "https://github.com/luisliuchao/seo-simple-checker.git"
},
"keywords": [
"seo",
"checker",
"html"
],
"author": "Liu Chao",
"license": "MIT",
"bugs": {
"url": "https://github.com/luisliuchao/seo-simple-checker/issues"
},
"homepage": "https://github.com/luisliuchao/seo-simple-checker",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.7.0",
"eslint": "^5.0.0",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-loader": "^2.0.0",
"eslint-plugin-import": "^2.13.0",
"mocha": "^5.2.0",
"uglifyjs-webpack-plugin": "^1.2.6",
"webpack": "^4.12.1",
"webpack-cli": "^3.0.8",
"yargs": "^11.0.0"
},
"babel": {
"presets": [
"env"
]
},
"dependencies": {
"cheerio": "^1.0.0-rc.2",
"co": "^4.6.0",
"co-prompt": "^1.0.0",
"colors": "^1.3.0",
"commander": "^2.15.1",
"lodash.every": "^4.6.0"
},
"bin": {
"seo-simple-checker": "bin/cli.js"
}
}