-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.1 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
{
"version": "0.0.0-semantically-released",
"name": "oas-request",
"description": "Feed it a JSON Spec, it will spit out a lightweight HTTP client!",
"author": "Ahmad Nassri <[email protected]> (https://www.ahmadnassri.com)",
"homepage": "https://github.com/ahmadnassri/node-oas-request",
"repository": {
"type": "git",
"url": "https://github.com/ahmadnassri/node-oas-request.git"
},
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/ahmadnassri"
},
"license": "MIT",
"main": "lib/index.js",
"keywords": [
"oas",
"request"
],
"engines": {
"node": ">=14"
},
"files": [
"lib"
],
"bugs": {
"url": "https://github.com/ahmadnassri/node-oas-request/issues"
},
"scripts": {
"test": "tap test --no-coverage",
"test:watch": "tap test --watch",
"test:ci": "tap test --100",
"test:report": "opener coverage/lcov-report/index.html"
},
"devDependencies": {
"axios": "^1.2.1",
"isomorphic-unfetch": "^3.1.0",
"sinon": "^15.0.1",
"tap": "^16.3.0"
},
"dependencies": {
"cross-fetch": "^3.1.5"
}
}