-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
39 lines (39 loc) · 1.05 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
{
"version": "0.0.0-semantically-released",
"name": "oas-fastify",
"description": "OAS 3.x to Fastify routes automation",
"author": "Ahmad Nassri <[email protected]> (https://www.ahmadnassri.com)",
"homepage": "https://github.com/ahmadnassri/node-oas-fastify",
"repository": {
"type": "git",
"url": "https://github.com/ahmadnassri/node-oas-fastify.git"
},
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/ahmadnassri"
},
"license": "MIT",
"main": "lib/index.js",
"keywords": [
"oas",
"fastify"
],
"files": [
"lib"
],
"bugs": {
"url": "https://github.com/ahmadnassri/node-oas-fastify/issues"
},
"scripts": {
"test": "npm run test:cli -- test",
"test:cli": "node --experimental-test-coverage --test",
"test:watch": "npm run test:cli -- --watch test",
"test:ci": "npm run test:cli -- --test-reporter node-test-github-reporter test"
},
"dependencies": {
"fastify-plugin": "^4.5.1"
},
"devDependencies": {
"node-test-github-reporter": "^1.1.3"
}
}