-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1012 Bytes
/
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
{
"name": "node-js-web-scraper",
"version": "0.1.0",
"description": "A node.JS web/feed scraper that aggregates data from around the web.",
"main": "index.js",
"scripts": {
"start": "node demo.js",
"scrape": "node demo.js",
"test": "make test"
},
"dependencies": {
"html-entities": "^1.2.1",
"scrape-it": "^3.3.3",
"xml2js": "^0.4.19"
},
"repository": {
"type": "git",
"url": "https://github.com/davelinke/node-js-web-scraper.git"
},
"keywords": [
"scraping",
"json",
"node"
],
"author": "David Linke <[email protected]> (https://davelinke.github.io/)",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/brentertz/scapegoat/blob/master/LICENSE-MIT"
}
],
"engines": {
"node": ">=7.6"
},
"engineStrict": true,
"devDependencies": {
"chai": "^4.1.2",
"mocha": "^4.0.1"
}
}