-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 900 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
38
39
40
41
42
43
44
45
46
47
{
"name": "get-oss",
"version": "1.3.0",
"description": "This will help in getting the email of top contributors from the repo.",
"main": "bin/get-oss.js",
"repository": "https://github.com/nimish-gupta/get-oss",
"author": "Nimish Gupta",
"license": "MIT",
"private": false,
"keywords": [
"oss",
"git",
"node",
"javascript"
],
"bin": {
"get-oss": "./bin/get-oss.js"
},
"scripts": {
"start:dev": "node .",
"test": "nyc ava"
},
"dependencies": {
"@octokit/rest": "^17.6.0",
"chalk": "^4.0.0",
"cli-table": "^0.3.1",
"inquirer": "^7.1.0",
"minimist": "^1.2.5",
"ora": "^4.0.4",
"ramda": "^0.27.0",
"ramda-fantasy": "^0.8.0",
"validator": "^13.0.0"
},
"ava": {
"files": [
"src/**/*.test.js"
],
"failFast": true,
"verbose": true
},
"devDependencies": {
"ava": "^3.8.1",
"get-stream": "^5.1.0",
"nyc": "^15.0.1",
"sinon": "^9.0.2"
}
}