directory-schema-validator
Version:
Validate file system structure with an extension of JSON schema.
62 lines (61 loc) • 1.58 kB
JSON
{
"name": "directory-schema-validator",
"version": "1.0.17",
"description": "Validate file system structure with an extension of JSON schema.",
"keywords": [
"validation",
"file"
],
"homepage": "https://github.com/jpoehnelt/directory-schema-validator#readme",
"bugs": {
"url": "https://github.com/jpoehnelt/directory-schema-validator/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jpoehnelt/directory-schema-validator.git"
},
"license": "Apache-2.0",
"author": "Justin Poehnelt",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"directory-schema-validator": "./bin/cli.js"
},
"files": [
"dist/"
],
"scripts": {
"build": "tsc",
"docs": "typedoc src/index.ts",
"format": "eslint . --fix",
"lint": "eslint .",
"prepare": "npm run build",
"test": "jest src"
},
"dependencies": {
"ajv": "^8.9.0",
"directory-tree": "^3.0.1",
"fast-glob": "^3.2.11",
"lodash": "^4.17.21",
"yargs": "^17.3.1"
},
"devDependencies": {
"@types/ajv": "^1.0.0",
"@types/jest": "^27.4.0",
"@types/json-schema": "^7.0.9",
"@types/lodash": "^4.14.178",
"eslint": "^8.8.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jest": "^27.0.1",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.4.7",
"prettier": "^2.5.1",
"ts-jest": "^27.1.3",
"typedoc": "^0.23.1",
"typescript": "^4.5.5"
},
"publishConfig": {
"access": "public",
"registry": "https://wombat-dressing-room.appspot.com"
}
}