-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.06 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
{
"name": "promise-crawler",
"version": "0.1.1",
"description": "Promise support for node-crawler (Web Crawler/Spider for NodeJS + server-side jQuery)",
"main": "index.js",
"scripts": {
"test": "node_modules/mocha/bin/mocha",
"coverage": "./node_modules/nyc/bin/nyc.js npm test && ./node_modules/nyc/bin/nyc.js report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AppliedSoul/promise-crawler.git"
},
"keywords": [
"crawler",
"node-crawler",
"request-crawler",
"promise-node-crawler"
],
"author": "Noel Gaur",
"license": "MIT",
"bugs": {
"url": "https://github.com/AppliedSoul/promise-crawler/issues"
},
"homepage": "https://github.com/AppliedSoul/promise-crawler#readme",
"dependencies": {
"bluebird": "^3.5.1",
"crawler": "^1.1.4",
"lodash": "^4.17.10"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.0.2",
"mocha": "^6.0.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^13.2.0"
}
}