-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
47 lines (47 loc) · 1.1 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
{
"name": "webcheck",
"version": "2.0.0",
"description": "A module to analyse websites for SEO, validation and code-quality",
"main": "index.js",
"scripts": {
"transpile": "tsc",
"lint": "tslint -p .",
"test": "npm run lint && npm run transpile && istanbul cover _mocha -- -- test/*.js"
},
"repository": {
"type": "git",
"url": "https://github.com/atd-schubert/node-webcheck.git"
},
"keywords": [
"SEO",
"web",
"crawler",
"crawl",
"analyzer",
"reporter",
"quality management",
"change management",
"data mining"
],
"author": "Arne Schubert <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/atd-schubert/node-webcheck/issues"
},
"dependencies": {
"@types/async": "^2.0.50",
"@types/node": "^10.12.18",
"@types/request": "^2.48.1",
"async": "^2.6.1",
"request": "^2.88.0"
},
"devDependencies": {
"@types/mocha": "^5.2.5",
"chai": "^4.2.0",
"coveralls": "^3.0.2",
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"tslint": "^5.12.0",
"typescript": "^3.2.2"
}
}