-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.15 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.15 KB
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
{
"name": "bmw-most-ranked-devs",
"version": "1.0.0",
"description": "Command line application to rank users in specific technology by City (data from github)",
"main": "./lib/index.js",
"engines": {
"node": ">= 8"
},
"scripts": {
"start": "./bin/most-ranked-devs.js",
"lint": "./node_modules/.bin/eslint .",
"test": "npm run lint && ./node_modules/.bin/mocha --timeout 15000 --reporter spec",
"debug": "cross-env DEBUG=most-ranked-devs ./bin/most-ranked-devs.js"
},
"bin": {
"most-ranked-devs": "./bin/most-ranked-devs.js"
},
"keywords": [
"node.js",
"github",
"javascript",
"api"
],
"private": true,
"preferGlobal": true,
"author": "Johnny Eric Amancio",
"license": "ISC",
"dependencies": {
"bluebird": "^3.5.0",
"chalk": "^1.1.3",
"cli-progress": "^1.4.1",
"commander": "^2.9.0",
"debug": "^2.6.8",
"dotenv": "^4.0.0",
"github": "^9.2.0",
"lodash": "^4.17.4"
},
"devDependencies": {
"chai": "^4.0.2",
"cross-env": "^5.0.1",
"eslint": "^4.0.0",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-import": "^2.3.0",
"mocha": "^3.4.2"
}
}