UNPKG

dpevalidator

Version:

A Javascript library to validate a DPE

78 lines (77 loc) 1.98 kB
{ "name": "dpevalidator", "version": "1.3.4", "description": "A Javascript library to validate a DPE", "main": "index.js", "typings": "index.d.ts", "author": "RedFroggy", "license": "MIT", "bugs": { "url": "https://github.com/RedFroggy/dpe-validator/issues" }, "keywords": [ "dpe", "validator", "red froggy" ], "repository": { "type": "git", "url": "https://github.com/RedFroggy/dpe-validator.git" }, "type": "module", "private": false, "scripts": { "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js", "qa:lint": "eslint .", "qa:lint:fix": "npm run qa:lint -- --fix", "qa:duplication": "jscpd", "qa:format": "prettier --plugin-search-dir . --write .", "release": "semantic-release", "release:dry": "semantic-release --dry-run", "prepare": "husky", "types:generate": "node scripts/generate-types.js" }, "dependencies": { "dpevalidator": "^1.3.3", "winston": "3.13.0" }, "devDependencies": { "@commitlint/cli": "19.3.0", "@commitlint/config-conventional": "19.2.2", "@commitlint/cz-commitlint": "19.2.0", "@semantic-release/changelog": "6.0.3", "@semantic-release/git": "10.0.1", "@semantic-release/github": "10.1.3", "@types/jest": "29.5.12", "@types/node": "20.14.12", "eslint": "8.57.0", "eslint-config-prettier": "9.1.0", "eslint-config-standard": "17.1.0", "eslint-plugin-check-file": "2.8.0", "eslint-plugin-import": "2.29.1", "husky": "9.1.2", "jest": "29.7.0", "jest-html-reporter": "3.10.2", "jscpd": "4.0.5", "json-ts": "1.6.4", "prettier": "3.3.3", "pretty-quick": "4.0.0", "semantic-release": "24.0.0" }, "jscpd": { "threshold": 0.1, "reporters": [ "console", "html" ], "ignore": [ "**/*.spec.js" ], "path": [ "src" ], "output": "./duplicate", "absolute": true, "gitignore": true } }