This repository has been archived by the owner on Nov 10, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
58 lines (58 loc) · 1.41 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "github-contribution-api",
"version": "1.1.2",
"description": "Get contribution count and data for a Github user",
"main": "src/index.js",
"scripts": {
"dev": "nodemon src/index.js",
"start": "node src/index.js",
"deploy": "now --public && now alias",
"test": "mocha -u bdd-lazy-var/global",
"precommit": "lint-staged"
},
"lint-staged": {
"*.{js}": [
"prettier --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/sallar/github-contribution-api.git"
},
"keywords": [
"github",
"contributions",
"api",
"node"
],
"author": "Sallar Kaboli <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/sallar/github-contribution-api/issues"
},
"homepage": "https://github.com/sallar/github-contribution-api#readme",
"dependencies": {
"body-parser": "^1.18.2",
"cheerio": "^1.0.0-rc.2",
"cors": "^2.8.4",
"data-uri-to-buffer": "^2.0.0",
"express": "^4.16.3",
"lodash": "^4.17.15",
"memory-cache": "^0.2.0",
"node-fetch": "^2.1.2",
"twitter": "^1.7.1",
"verror": "^1.10.0"
},
"devDependencies": {
"bdd-lazy-var": "^2.5.2",
"chai": "^4.1.2",
"husky": "^0.14.3",
"lint-staged": "^7.1.2",
"mocha": "^5.2.0",
"nodemon": "^1.17.3",
"prettier": "^1.12.1",
"proxyquire": "^2.0.1",
"sinon": "^5.0.7"
}
}