-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.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
{
"name": "fastify-axios",
"version": "1.3.0",
"description": "Decorate fastify instance with axios http client",
"type": "commonjs",
"types": "types/index.d.ts",
"main": "index.js",
"scripts": {
"lint": "standard",
"unit": "tap test.js",
"coverage": "npm run unit -- --cov",
"test": "npm run lint && npm run unit",
"report-coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/davidedantonio/fastify-axios.git"
},
"keywords": [
"fastify",
"axios",
"nodejs"
],
"author": "Davide D'Antonio <davide.dantonio1984@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/davidedantonio/fastify-axios/issues"
},
"tap": {},
"homepage": "https://github.com/davidedantonio/fastify-axios#readme",
"dependencies": {
"axios": "^1.7.8",
"fastify-plugin": "^4.5.1"
},
"devDependencies": {
"@fastify/pre-commit": "^2.2.0",
"fastify": "^4.24.3",
"standard": "^17.1.0",
"tap": "^18.6.1"
},
"pre-commit": [
"lint",
"test"
]
}