-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1016 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 1016 Bytes
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
{
"name": "plugnsearch-datascraper",
"version": "1.0.0",
"description": "The data scraper that makes the plugnsearch really easy to use.",
"main": "index.js",
"private": true,
"keywords": [
"crawler",
"spider",
"scraper",
"configurable",
"middleware",
"search",
"nodejs",
"jquery",
"webspider",
"webcrawler"
],
"scripts": {
"test": "jest",
"lint": "eslint src/"
},
"author": "g.tavonius@gmail.com",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/plugnsearch/datascraper.git"
},
"dependencies": {},
"devDependencies": {
"cheerio": "^1.0.0-rc.2",
"eslint": "3.x",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"jest": "^22.0.6",
"prettier": "^1.15.3",
"sinon": "^4.2.0"
},
"peerDependencies": {
"cheerio": "^1.0.0-rc.2"
}
}