package.json
1.01 KB
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
{
"name": "seenreq",
"version": "3.0.0",
"description": "A library to test if a url(request) is crawled, usually used in a web crawler. Compatible with `request` and `node-crawler`",
"main": "index.js",
"scripts": {
"hint": "eslint ./lib/*/*.js ./test/*.js",
"test": "mocha --timeout=15000 ./test/*test.js",
"cover": "istanbul cover _mocha --report lcovonly -- --timeout=15000 --reporter spec test/*.test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/mike442144/seenreq"
},
"keywords": [
"nodejs",
"url seen test",
"reomve duplicate url",
"request normalize"
],
"author": "Mike Chen",
"license": "MIT",
"bugs": {
"url": "https://github.com/mike442144/seenreq/issues"
},
"homepage": "https://github.com/mike442144/seenreq",
"dependencies": {
"node-url-utils": "^0.4.0"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^5.2.0",
"istanbul": "^0.4.5",
"mocha": "^5.2.0",
"rewire": "^4.0.1",
"sinon": "^6.1.1"
}
}