-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 804 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 804 Bytes
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
{
"name": "github-pagination-parser",
"description": "JavaScript parser for github pagination (link) header",
"version": "0.1.2",
"keywords": [
"github",
"functional",
"codecasts",
"github-api",
"pagination"
],
"bugs": "https://github.com/codecasts/github-pagination-parser/issues",
"repository": "https://github.com/codecasts/github-pagination-parser",
"homepage": "https://github.com/codecasts/github-pagination-parser",
"engines": {
"node": ">= 6.0.0"
},
"main": "./src/index.js",
"author": "Vinicius Reis <luiz.vinicius73@gmail.com>",
"license": "MIT",
"scripts": {
"test": "jest"
},
"jest": {
"collectCoverage": true
},
"devDependencies": {
"jest-cli": "^16.0.2"
},
"dependencies": {
"compose-function": "^3.0.3"
}
}