-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
40 lines (40 loc) · 988 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": "change-me",
"version": "0.0.1",
"description": "<CHANGE ME>",
"main": "index.js",
"types": "types/index.d.ts",
"scripts": {
"lint": "standard",
"lint:fix": "standard --fix",
"test": "npm run test:unit && npm run test:typescript",
"test:typescript": "tsd",
"test:unit": "tap"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Eomm/<CHANGE ME>.git"
},
"keywords": [
"fastify",
"plugin",
"fastify-plugin",
"<CHANGE ME>"
],
"author": "Manuel Spigolon <[email protected]> (https://github.com/Eomm)",
"funding": "https://github.com/Eomm/<CHANGE ME>?sponsor=1",
"license": "MIT",
"bugs": {
"url": "https://github.com/Eomm/<CHANGE ME>/issues"
},
"homepage": "https://github.com/Eomm/<CHANGE ME>#readme",
"devDependencies": {
"fastify": "^4.10.2",
"standard": "^17.0.0",
"tap": "^16.3.2",
"tsd": "^0.31.0"
},
"dependencies": {
"fastify-plugin": "^4.4.0"
}
}