-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 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
{
"name": "linden-honey-scraper",
"version": "1.1.2",
"description": "Lyrics scraper service powered by Express.js",
"main": "src/index.js",
"scripts": {
"start": "node src",
"debug": "node --inspect src",
"test": "mocha src/**/*.spec.js",
"lint": "eslint src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/linden-honey/linden-honey-scraper-nodejs.git"
},
"author": "Alexander Babai <aliaksandr.babai@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/linden-honey/linden-honey-scraper-nodejs/issues"
},
"homepage": "https://github.com/linden-honey/linden-honey-scraper-nodejs#readme",
"dependencies": {
"async-retry": "^1.2.3",
"axios": "^0.19.0",
"cheerio": "^1.0.0-rc.3",
"express": "^4.17.1",
"express-async-errors": "^3.1.1",
"iconv-lite": "^0.5.0",
"swagger-ui-express": "^4.1.2"
},
"devDependencies": {
"babel-eslint": "^10.0.3",
"chai": "^4.2.0",
"eslint": "^6.7.2",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.19.1",
"mocha": "^6.2.2",
"sinon": "^8.0.1",
"sinon-chai": "^3.4.0"
}
}