UNPKG

validate-iri

Version:
87 lines (86 loc) 2.16 kB
{ "name": "validate-iri", "version": "1.0.1", "description": "Validates an IRI according to RFC 3987", "keywords": [ "IRI", "validate", "validator", "RFC3987", "URI", "URL" ], "main": "index.js", "typings": "index", "repository": "git@github.com:comunica/validate-iri.js.git", "author": "Ruben Taelman <rubensworks@gmail.com>", "bugs": { "url": "https://github.com/comunica/validate-iri.js/issues" }, "homepage": "https://github.com/comunica/validate-iri.js#readme", "license": "MIT", "files": [ "lib/**/*.d.ts", "lib/**/*.js", "lib/**/*.js.map", "index.d.ts", "index.js.map", "index.js" ], "pre-commit": [ "build", "lint", "test" ], "devDependencies": { "@rubensworks/eslint-config": "^1.0.0", "@types/jest": "^28.0.0", "@typescript-eslint/eslint-plugin": "^4.2.0", "@typescript-eslint/parser": "^4.1.1", "coveralls": "^3.0.0", "eslint": "^7.9.0", "eslint-config-es": "^3.23.0", "eslint-import-resolver-typescript": "^2.3.0", "eslint-plugin-import": "^2.22.0", "eslint-plugin-jest": "^24.0.2", "eslint-plugin-tsdoc": "^0.2.7", "eslint-plugin-unused-imports": "^1.0.0", "jest": "^28.0.0", "manual-git-changelog": "^1.0.0", "pre-commit": "^1.2.2", "ts-jest": "^28.0.0", "typescript": "^4.0.2" }, "jest": { "transform": { "^.+\\.ts$": "ts-jest" }, "transformIgnorePatterns": [ "[/\\\\]node_modules[/\\\\].+\\.(js|jsx)$" ], "testRegex": "(/test/.*|(\\.|/)(test|spec))\\.ts$", "moduleFileExtensions": [ "ts", "js" ], "collectCoverage": true, "coverageThreshold": { "global": { "branches": 100, "functions": 100, "lines": 100, "statements": 100 } } }, "scripts": { "test": "jest ${1}", "test-watch": "jest ${1} --watch", "coveralls": "jest --coverage && cat ./coverage/lcov.info | coveralls", "lint": "eslint . --ext .ts --cache", "build": "tsc", "validate": "npm ls", "prepare": "npm run build", "version": "manual-git-changelog onversion" } }