-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
53 lines (52 loc) · 1.19 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
{
"name": "node-iceberg",
"version": "1.7.1",
"engines": {
"node": ">=8.9.1"
},
"description": "nodejs lightweight scraper/crawler",
"main": "./index.js",
"scripts": {
"test": "mocha --timeout 5000000 test/* test/**/*.js",
"cover": "istanbul cover _mocha test/**/*.js",
"coveralls": "npm run cover -- --report lcovonly && cat ./coverage/lcov.info | coveralls"
},
"dependencies": {
"cheerio": "1.0.0-rc.2",
"lodash": "^4.17.4",
"request": "^2.75.0"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/manuasir/node-iceberg.git"
},
"author": "Manuel J. Bernal",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/manuasir/node-iceberg/issues"
},
"homepage": "https://github.com/manuasir/node-iceberg",
"devDependencies": {
"chai": "^4.1.2",
"chai-http": "^3.0.0",
"coveralls": "^3.0.0",
"express": "^4.16.2",
"istanbul": "^0.4.5",
"mocha": "^4.0.1",
"mocha-lcov-reporter": "^1.3.0",
"standard": "^10.0.3",
"path": "^0.12.7"
},
"keywords":[
"scraper",
"crawler",
"es6",
"es7",
"es8",
"data-mining",
"data"
]
}