-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.15 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
{
"name": "edderkopp",
"version": "1.0.0-beta",
"description": "Crawl/scrape webpages using simple config files",
"main": "dist/index.js",
"scripts": {
"build": "babel src -d dist -s",
"watch": "babel -w src -d dist -s",
"example": "babel-node ./example/run-es6.js"
},
"babel": {
"presets": [
"es2015",
"stage-0"
],
"plugins": [
"transform-runtime"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/fractalf/edderkopp.git"
},
"keywords": [
"spider",
"crawler",
"es6",
"es7",
"es2015",
"es2016",
"babel"
],
"author": "Alf Marius Foss Olsen <alfm@arius.in>",
"license": "MIT",
"bugs": {
"url": "https://github.com/fractalf/edderkopp/issues"
},
"homepage": "https://github.com/fractalf/edderkopp",
"dependencies": {
"babel-runtime": "^6.11.6",
"cheerio": "^0.20.0",
"request": "^2.72.0",
"robots-parser": "^1.0.0",
"winston": "^2.2.0"
},
"devDependencies": {
"babel-cli": "^6.9.0",
"babel-plugin-transform-runtime": "^6.12.0",
"babel-preset-es2015": "^6.9.0",
"babel-preset-stage-0": "^6.5.0"
}
}