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.
45 lines
1.1 KiB
45 lines
1.1 KiB
{
|
|
"name": "fastify-env",
|
|
"version": "2.1.1",
|
|
"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": "^3.0.1",
|
|
"fastify-plugin": "^3.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^15.0.0",
|
|
"cross-env": "^7.0.2",
|
|
"fastify": "^3.0.0",
|
|
"pre-commit": "^1.2.2",
|
|
"snazzy": "^9.0.0",
|
|
"standard": "^16.0.3",
|
|
"tap": "^15.0.0",
|
|
"tsd": "^0.14.0"
|
|
},
|
|
"tsd": {
|
|
"directory": "test/types"
|
|
}
|
|
}
|