forked from fastify/fastify-env
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 947 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
{
"name": "fastify-env",
"version": "0.4.0",
"description": "Fastify plugin to check environment variables",
"main": "index.js",
"scripts": {
"lint": "standard | snazzy",
"unit": "VALUE_FROM_ENV=pippo tap test",
"test": "npm run lint && npm run unit",
"coverage": "VALUE_FROM_ENV=pippo tap --cov --coverage-report=html test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fastify/fastify-env.git"
},
"keywords": [
"fastify"
],
"author": "Tommaso Allevi - @allevo",
"license": "MIT",
"bugs": {
"url": "https://github.com/fastify/fastify-env/issues"
},
"homepage": "https://github.com/fastify/fastify-env#readme",
"dependencies": {
"ajv": "^6.0.0",
"fastify-plugin": "^0.2.0",
"xtend": "^4.0.1"
},
"devDependencies": {
"fastify": "^0.40.0",
"pre-commit": "^1.2.2",
"snazzy": "^7.0.0",
"standard": "^10.0.3",
"tap": "^11.0.0"
}
}