-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.23 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
{
"name": "@ceicc/range",
"version": "3.0.2",
"description": "http range request handler",
"exports": "./lib/index.js",
"type": "module",
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"dev": "nodemon test/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ceicc/range.git"
},
"keywords": [
"range",
"range-header",
"partition"
],
"author": "Husam Ahmed",
"license": "MIT",
"private": false,
"publishConfig": {
"access": "public"
},
"bugs": {
"url": "https://github.com/ceicc/range/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/ceicc/range#readme",
"files": [
"lib/",
"README.md",
"LICENSE",
"package.json"
],
"engines": {
"node": ">=14.16"
},
"dependencies": {
"compressible": "^2.0.18",
"mime-types": "^2.1.35",
"negotiator": "^0.6.3"
},
"devDependencies": {
"@types/compressible": "^2.0.0",
"@types/express": "^4.17.13",
"@types/jest": "^28.1.0",
"@types/mime-types": "^2.1.1",
"@types/negotiator": "^0.6.1",
"@types/node": "^17.0.36",
"express": "^4.18.1",
"jest": "^28.1.0",
"supertest": "^6.2.3"
}
}