You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

48 lines
1.2 KiB

{
"name": "@fastify/env",
"version": "3.0.0",
"description": "Fastify plugin to check environment variables",
"main": "index.js",
"scripts": {
"coverage": "cross-env VALUE_FROM_ENV=pippo tap --cov --coverage-report=html test/*.js",
"lint": "standard | snazzy",
"lint:fix": "standard --fix",
"test": "npm run lint && npm run unit && npm run typescript",
"typescript": "tsd",
"unit": "cross-env VALUE_FROM_ENV=pippo tap test/*.js"
},
"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": {
"env-schema": "^4.0.0",
"fastify-plugin": "^3.0.0"
},
"devDependencies": {
"@types/node": "^17.0.0",
"cross-env": "^7.0.2",
"fastify": "^3.0.0",
"pre-commit": "^1.2.2",
"snazzy": "^9.0.0",
"standard": "^17.0.0",
"tap": "^16.0.0",
"tsd": "^0.20.0"
},
"tsd": {
"directory": "test/types"
},
"publishConfig": {
"access": "public"
}
}