-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
44 lines (44 loc) · 1.16 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
{
"name": "hacktoberfeststats",
"version": "3.0.0",
"description": "This is a Module that scrapes Hacktoberfest's site and return on how you are doing",
"main": "main.js",
"bin": {
"hacktoberfeststats": "./cli.js"
},
"scripts": {
"test": "eslint main.js cli.js && mocha",
"format": "node_modules/.bin/prettier-eslint --config ./.prettierrc --write \"**/*.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/MatejMecka/hacktoberfeststats.git"
},
"keywords": [
"hacktoberfest",
"open source",
"scraping",
"opensource",
"stats",
"statistics"
],
"author": "“Matej <“matej.plavevski+github@gmail.com”>",
"license": "MIT",
"bugs": {
"url": "https://github.com/MatejMecka/hacktoberfeststats/issues"
},
"homepage": "https://github.com/MatejMecka/hacktoberfeststats#readme",
"dependencies": {
"meow": "^7.1.1",
"package.json": "^2.0.1",
"request": "^2.88.2"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "6.5.1",
"eslint-config-airbnb-base": "14.0.0",
"eslint-plugin-import": "2.18.2",
"mocha": "^7.1.2",
"prettier-eslint-cli": "5.0.0"
}
}