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.
47 lines
1.1 KiB
47 lines
1.1 KiB
{
|
|
"name": "@fastify/ajv-compiler",
|
|
"version": "1.1.0",
|
|
"description": "Build and manage the AJV instances for the fastify framework",
|
|
"main": "index.js",
|
|
"types": "index.d.ts",
|
|
"directories": {
|
|
"test": "test"
|
|
},
|
|
"scripts": {
|
|
"lint:fix": "standard --fix",
|
|
"unit": "tap --100 test/**/*.test.js",
|
|
"test": "standard && npm run unit && npm run test:typescript",
|
|
"test:typescript": "tsd"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/fastify/ajv-compiler.git"
|
|
},
|
|
"keywords": [
|
|
"ajv",
|
|
"validator",
|
|
"schema",
|
|
"compiler",
|
|
"fastify"
|
|
],
|
|
"author": "Manuel Spigolon <behemoth89@gmail.com> (https://github.com/Eomm)",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/fastify/ajv-compiler/issues"
|
|
},
|
|
"homepage": "https://github.com/fastify/ajv-compiler#readme",
|
|
"devDependencies": {
|
|
"ajv-errors": "^1.0.1",
|
|
"ajv-merge-patch": "^4.1.0",
|
|
"standard": "^16.0.3",
|
|
"tap": "^15.0.1",
|
|
"tsd": "^0.14.0"
|
|
},
|
|
"dependencies": {
|
|
"ajv": "^6.12.6"
|
|
},
|
|
"tsd": {
|
|
"directory": "test/types"
|
|
}
|
|
}
|