forked from linkedtales/scrapedin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 945 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
41
{
"name": "scrapedin",
"version": "1.0.8",
"description": "linkedin scraper for 2019 website",
"keywords": [
"linkedin",
"scraper"
],
"main": "src/scrapedin.js",
"scripts": {
"test": "mocha src/**.test.js",
"lint": "standard --fix 'src/*.js'",
"coverage": "nyc npm test",
"coverage:report": "nyc --reporter=lcov npm test"
},
"repository": {
"type": "git",
"url": "https://github.com/leonardiwagner/scrapedin"
},
"bugs": {
"url": "https://github.com/leonardiwagner/scrapedin/issues"
},
"author": "Wagner Leonardi <[email protected]>",
"license": "Apache-2.0",
"dependencies": {
"puppeteer": "^1.13.0",
"winston": "^3.1.0"
},
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.0.2",
"faker": "^4.1.0",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"sinon": "^7.2.2",
"standard": "^12.0.1"
},
"engines": {
"node": ">= 7.6.0"
}
}