-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.24 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
54
55
56
57
58
59
60
61
62
{
"name": "fastify-envalid",
"version": "0.0.0",
"description": "",
"main": "index.js",
"type": "module",
"directories": {
"test": "test"
},
"scripts": {
"test": "npm run lint && npm run unit && npm run test:typescript",
"lint": "standard && npm run lint:typescript",
"lint:typescript": "ts-standard",
"test:typescript": "tsd",
"unit": "tap test/**/*.test.js"
},
"keywords": [
".env",
"dotenv",
"env",
"env var",
"environment",
"environment variable",
"validation",
"fastify",
"plugin"
],
"author": "Alessandro Magionami - @alemagio",
"repository": {
"type": "git",
"url": "git+https://github.com/alemagio/fastify-envalid.git"
},
"license": "MIT",
"types": "index.d.ts",
"dependencies": {
"fastify-plugin": "^3.0.0"
},
"devDependencies": {
"@types/node": "^16.6.2",
"fastify": "^3.20.2",
"fastify-tsconfig": "^1.0.1",
"standard": "^16.0.3",
"tap": "^15.0.9",
"ts-standard": "^10.0.0",
"tsd": "^0.17.0",
"typescript": "^4.3.5"
},
"tsd": {
"directory": "test"
},
"files": [
"index.d.ts"
],
"ts-standard": {
"ignore": [
"examples"
]
},
"peerDependencies": {
"envalid": "^7.2.2"
}
}