-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
61 lines (61 loc) · 1.41 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
{
"name": "litic",
"version": "1.1.0",
"description": "Perform technical SEO analysis to your website.",
"main": "lib/index.js",
"preferGlobal": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"tsc": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RuliLG/Litic.git"
},
"keywords": [
"seo",
"technical",
"seo",
"automated",
"testing",
"accessibility",
"best practices",
"security"
],
"author": "Raúl López",
"license": "ISC",
"bugs": {
"url": "https://github.com/RuliLG/Litic/issues"
},
"homepage": "https://github.com/RuliLG/Litic#readme",
"dependencies": {
"argparse": "^2.0.1",
"cheerio": "^1.0.0-rc.5",
"csv-writer": "^1.6.0",
"dayjs": "^1.10.3",
"html-minifier": "^4.0.0",
"html-validator": "^5.1.17",
"lighthouse": "^7.0.0",
"node-fetch": "^2.6.1",
"puppeteer": "^5.5.0",
"silverdiamond": "^1.4.0",
"typescript": "^4.1.3",
"whois": "^2.13.3"
},
"devDependencies": {
"@types/argparse": "^2.0.5",
"@types/node-fetch": "^2.5.8",
"@types/puppeteer": "^5.4.2",
"prettier": "^2.2.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0"
},
"files": [
"lib/**/*"
],
"bin": {
"litic": "./lib/bin/cli.js"
}
}