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

3 years ago
{
"name": "env-schema",
"version": "4.2.0",
"description": "Validate your env variable using Ajv and dotenv",
"main": "index.js",
"scripts": {
"test": "standard | snazzy && tap test/*.test.js --no-check-coverage && npm run typescript",
"test:ci": "standard | snazzy && tap test/*.test.js --no-check-coverage --coverage-report=lcovonly && npm run typescript",
"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 <hello@matteocollina.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/fastify/env-schema/issues"
},
"homepage": "https://github.com/fastify/env-schema#readme",
"devDependencies": {
"ajv-formats": "^2.1.1",
"fluent-json-schema": "^3.0.0",
"pre-commit": "^1.2.2",
"snazzy": "^9.0.0",
"standard": "^16.0.0",
"tap": "^16.0.0",
"tsd": "^0.19.0"
},
"dependencies": {
"ajv": "^8.0.0",
"dotenv": "^16.0.0",
"dotenv-expand": "^8.0.3"
},
"tsd": {
"directory": "test/types"
}
}