-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathpackage.json
35 lines (35 loc) · 918 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
{
"name": "scrapedin-crawler",
"version": "0.0.2",
"description": "",
"main": "index.js",
"scripts": {
"start": "node src/index",
"test": "nyc mocha src/**.test.js --exit",
"lint": "standard --fix 'src/*.js' --env mocha",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/leonardiwagner/scrapedin-linkedin-crawler.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/leonardiwagner/scrapedin-linkedin-crawler/issues"
},
"homepage": "https://github.com/leonardiwagner/scrapedin-linkedin-crawler#readme",
"dependencies": {
"scrapedin": "1.0.18"
},
"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"
}
}