-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 777 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 777 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
{
"name": "spiders",
"version": "1.0.4",
"description": "A web crawler engine.",
"keywords": [
"crawl",
"scrape",
"cheerio",
"graph"
],
"main": "dist/index.js",
"repository": "https://github.com/miltonakash/spiders",
"author": "Akash Milton M",
"license": "MIT",
"private": false,
"scripts": {
"build": "./node_modules/babel-cli/bin/babel.js ./index.js -d ./dist --plugins transform-runtime --presets=babel-preset-env"
},
"dependencies": {
"babel-runtime": "^6.26.0",
"cheerio": "^1.0.0-rc.2",
"cli-table": "^0.3.1",
"request": "^2.83.0",
"request-promise": "^4.2.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1"
}
}