-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 874 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
{
"name": "ghminer",
"version": "0.0.0",
"description": "Command-line GitHub repository miner that aggregates dataset for your researches",
"main": "./src/index.js",
"bin": {
"ghminer": "./src/index.js"
},
"keywords": [
"github-repositories",
"javascript",
"research-dataset"
],
"author": "h1alexbel",
"license": "MIT",
"scripts": {
"test": "grunt --no-color",
"cov": "nyc --all --include src/ npm test"
},
"dependencies": {
"csv-writer": "^1.6.0",
"fs": "^0.0.1-security",
"graphql-request": "^7.0.1",
"minimist": "^1.2.8",
"tmp": "^0.2.3"
},
"devDependencies": {
"eslint": "9.19.0",
"eslint-config-google": "0.14.0",
"grunt": "^1.6.1",
"grunt-contrib-clean": "2.0.1",
"grunt-eslint": "24.3.0",
"grunt-mocha-cli": "^4.0.0",
"mocha": "^11.0.0",
"nyc": "^17.0.0"
}
}