-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
49 lines (49 loc) · 1.21 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
{
"name": "@pillarjs/request",
"version": "0.0.0",
"description": "The Express request object as a standalone module",
"author": "TJ Holowaychuk <[email protected]>",
"contributors": [
"Douglas Christopher Wilson <[email protected]>",
"Jonathan Ong <[email protected]>",
"Roman Shtylman <[email protected]>",
"Wes Todd <[email protected]>"
],
"keywords": [
"express",
"request",
"http"
],
"license": "MIT",
"main": "index.js",
"type": "commonjs",
"repository": {
"type": "git",
"url": "https://github.com/expressjs/request.git"
},
"scripts": {
"test": "standard && mocha",
"lint": "standard",
"test-ci": "mocha",
"test-cover": "nyc --reporter=lcovonly mocha --reporter spec --check-leaks test/",
"prepublushOnly": "npm t"
},
"dependencies": {
"accepts": "~1.3.7",
"depd": "~1.1.2",
"fresh": "0.5.2",
"parseurl": "~1.3.3",
"proxy-addr": "~2.0.5",
"range-parser": "~1.2.1",
"setprototypeof": "1.1.1",
"type-is": "~1.6.18"
},
"devDependencies": {
"cookie-parser": "^1.4.4",
"express": "^4.17.1",
"mocha": "5.2.0",
"nyc": "15.0.0",
"standard": "13.0.2",
"supertest": "3.3.0"
}
}