-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
48 lines (48 loc) · 1.09 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
{
"name": "@jonstuebe/scraper",
"version": "0.2.0",
"description": "website scraper",
"main": "lib/index.js",
"files": [
"lib/*"
],
"homepage": "https://github.com/jonstuebe/scraper#readme",
"author": "Jon Stuebe <jstuebe@gmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/jonstuebe/scraper.git"
},
"bugs": {
"url": "https://github.com/jonstuebe/scraper/issues"
},
"engines": {
"node": ">=8.6.0"
},
"keywords": [
"nodejs",
"scraper"
],
"license": "MIT",
"scripts": {
"start": "babel --watch --out-dir lib/ src/",
"build": "babel -d lib/ src/",
"prepublish": "npm run build",
"test": "jest",
"test-watch": "jest --watch"
},
"dependencies": {
"bluebird": "^3.5.1",
"lodash": "^4.17.4",
"puppeteer": "^2.0.0",
"striptags": "^3.1.0",
"url-parse": "^1.0.5"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-regenerator": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-register": "^6.26.0",
"jest": "^24.9.0"
}
}