-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
40 lines (40 loc) · 852 Bytes
/
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
{
"name": "centra",
"version": "2.7.0",
"description": "The core lightweight HTTP client for Node",
"main": "createRequest.js",
"scripts": {
"test": "node test.js --test-force-exit",
"prepublishOnly": "npm test"
},
"repository": {
"type": "git",
"url": "git+/~https://github.com/ethanent/centra.git"
},
"files": [
"model/CentraRequest.js",
"model/CentraResponse.js",
"createRequest.js"
],
"keywords": [
"http",
"https",
"request",
"fetch",
"url",
"lightweight"
],
"author": "Ethan Davis",
"license": "MIT",
"bugs": {
"url": "/~https://github.com/ethanent/centra/issues"
},
"homepage": "/~https://github.com/ethanent/centra",
"devDependencies": {
"body-parser": "^1.20.2",
"express": "^4.19.2"
},
"dependencies": {
"follow-redirects": "^1.15.6"
}
}