-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.01 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
46
47
48
49
50
51
{
"name": "@pbe/fastify-jsonp",
"version": "1.0.2",
"description": "A Fastify plugin to add jsonp support",
"main": "index.js",
"types": "typing.d.ts",
"scripts": {
"lint": "standard",
"lint:fix": "standard --fix",
"release": "release-it",
"test": "tap"
},
"author": "Pavel Bely",
"license": "MIT",
"files": [
"LICENSE",
"README.md",
"typing.d.ts",
"index.js"
],
"devDependencies": {
"fastify": "4.9.2",
"release-it": "15.5.0",
"standard": "17.0.0",
"tap": "16.3.0"
},
"dependencies": {
"fastify-plugin": "4.3.0"
},
"engines": {
"npm": ">=8",
"node": ">=16"
},
"keywords": [
"fastify",
"fastify-plugin",
"jsonp",
"fastify-jsonp"
],
"homepage": "https://github.com/R1ZEN/fastify-jsonp#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/R1ZEN/fastify-jsonp.git"
},
"bugs": {
"url": "https://github.com/R1ZEN/fastify-jsonp/issues"
},
"publishConfig": {
"access": "public"
}
}