-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
52 lines (52 loc) · 1.17 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
{
"name": "env-schema",
"version": "6.0.0",
"description": "Validate your env variable using Ajv and dotenv",
"main": "index.js",
"type": "commonjs",
"types": "types/index.d.ts",
"scripts": {
"lint": "standard | snazzy",
"test": "npm run test:unit && npm run test:typescript",
"test:unit": "tap",
"test:typescript": "tsd"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fastify/env-schema.git"
},
"keywords": [
"ajv",
"env",
"schema",
"json",
"dotenv",
"validate",
"extract"
],
"author": "Matteo Collina <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/fastify/env-schema/issues"
},
"homepage": "https://github.com/fastify/env-schema#readme",
"dependencies": {
"ajv": "^8.12.0",
"dotenv": "^16.4.5",
"dotenv-expand": "10.0.0"
},
"devDependencies": {
"@fastify/pre-commit": "^2.1.0",
"@sinclair/typebox": "^0.33.4",
"ajv-formats": "^3.0.1",
"fluent-json-schema": "^5.0.0",
"snazzy": "^9.0.0",
"standard": "^17.1.0",
"tap": "^18.7.1",
"tsd": "^0.31.0"
},
"pre-commit": [
"lint",
"test"
]
}