-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
39 lines (39 loc) · 1.01 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
{
"name": "codewars-solutions-scraper",
"version": "1.0.8",
"description": "A scraper that gets the solutions of all of the CodeWars katas you have solved",
"main": "src/main.js",
"bin": {
"codewars-solutions-scraper": "src/main.js"
},
"scripts": {
"start": "node src/main.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nibble-4bits/codewars-solutions-scraper.git"
},
"keywords": [
"codewars",
"scraper",
"solutions",
"problems",
"katas",
"puppeteer"
],
"author": "Luis De Anda",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/nibble-4bits/codewars-solutions-scraper/issues"
},
"homepage": "https://github.com/nibble-4bits/codewars-solutions-scraper#readme",
"dependencies": {
"chalk": "^4.0.0",
"commander": "^5.1.0",
"inquirer": "^7.1.0",
"loglevel": "^1.6.8",
"loglevel-plugin-prefix": "^0.8.4",
"puppeteer": "^3.1.0"
}
}