-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
53 lines (53 loc) · 1.15 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
52
53
{
"name": "fastify-no-additional-properties",
"version": "3.0.0",
"description": "Add `additionalProperties: false` by default to your JSON Schemas",
"type": "module",
"exports": {
"import": "./fnap.mjs",
"require": "./fnap.cjs",
"types": "./fnap.d.ts"
},
"main": "./fnap.cjs",
"types": "./fnap.d.ts",
"scripts": {
"build": "rollup -c",
"lint": "standard",
"test": "c8 ava",
"prepublishOnly": "npm run lint && npm run build && npm test"
},
"keywords": [
"fastify",
"plugin",
"json",
"schema",
"additionalProperties"
],
"author": "Giacomo Gregoletto <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/greguz/fastify-no-additional-properties.git"
},
"files": [
"fnap.cjs",
"fnap.mjs",
"fnap.d.ts"
],
"dependencies": {
"fastify-plugin": "^5.0.1"
},
"devDependencies": {
"ava": "^6.1.3",
"c8": "^10.1.2",
"fastify": "^5.0.0",
"fluent-json-schema": "^5.0.0",
"rollup": "^4.24.0",
"standard": "^17.1.2"
},
"ava": {
"environmentVariables": {
"NODE_ENV": "test"
}
}
}