-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 979 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 979 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
34
35
36
37
38
39
40
41
42
{
"name": "express-range",
"version": "2.0.1",
"description": "Express REST middleware for Content-Range pagination",
"main": "index.js",
"scripts": {
"test": "mocha",
"test-bg": "mocha -w"
},
"repository": {
"type": "git",
"url": "git://github.com/purposeindustries/express-range"
},
"keywords": [
"express",
"content-range",
"range",
"pagination"
],
"author": "Purpose Industries <dev@purposeindustries.co>",
"contributors": [
{
"name": "Bence Dányi",
"email": "bd@purposeindustries.co"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/purposeindustries/express-range/issues"
},
"homepage": "https://github.com/purposeindustries/express-range",
"devDependencies": {
"express": "^4.6.1",
"mocha": "^1.20.1",
"should": "^4.0.4",
"supertest": "^0.13.0"
},
"dependencies": {
"http-content-range-format": "^1.0.0",
"http-range-parse": "^1.0.0"
}
}