UNPKG

tripledoc

Version:

Library to read, create and update documents on a Solid Pod

129 lines (128 loc) 3.17 kB
{ "name": "sitemap", "version": "3.2.2", "description": "Sitemap-generating framework", "keywords": [ "sitemap", "sitemap.xml" ], "homepage": "https://github.com/ekalinin/sitemap.js#readme", "bugs": { "url": "https://github.com/ekalinin/sitemap.js/issues" }, "repository": { "type": "git", "url": "git://github.com/ekalinin/sitemap.js.git" }, "license": "MIT", "author": "Eugene Kalinin <e.v.kalinin@gmail.com>", "main": "dist/index.js", "types": "dist/index.d.ts", "directories": { "lib": "lib", "test": "tests" }, "scripts": { "prepublishOnly": "sort-package-json && npm run test", "test": "tsc && jest", "test-perf": "node ./tests/perf.js", "test:typecheck": "tsc" }, "husky": { "hooks": { "pre-commit": "sort-package-json", "pre-push": "npm test" } }, "eslintConfig": { "env": { "es6": true, "jasmine": true, "jest": true, "node": true }, "extends": [ "eslint:recommended", "plugin:@typescript-eslint/recommended" ], "parser": "@typescript-eslint/parser", "parserOptions": { "ecmaVersion": 6, "sourceType": "module" }, "rules": { "no-case-declarations": 0, "no-console": 0, "no-unused-vars": 0, "react/prop-types": 0, "indent": "off", "no-dupe-class-members": "off", "@typescript-eslint/indent": [ "error", 2 ], "@typescript-eslint/no-parameter-properties": "off", "@typescript-eslint/no-unused-vars": [ "error", { "args": "none" } ], "@typescript-eslint/explicit-member-accessibility": "off", "@typescript-eslint/interface-name-prefix": "always" } }, "jest": { "collectCoverage": true, "collectCoverageFrom": [ "lib/**/*.ts", "!lib/**/*.d.ts", "!node_modules/" ], "coverageThreshold": { "global": { "branches": 80, "functions": 90, "lines": 90, "statements": 90 } } }, "dependencies": { "lodash.chunk": "^4.2.0", "lodash.padstart": "^4.6.1", "whatwg-url": "^7.0.0", "xmlbuilder": "^13.0.0" }, "devDependencies": { "@babel/core": "^7.4.4", "@babel/plugin-proposal-class-properties": "^7.4.4", "@babel/plugin-transform-typescript": "^7.4.5", "@babel/preset-env": "^7.4.4", "@babel/preset-typescript": "^7.3.3", "@types/jest": "^24.0.12", "@types/lodash.chunk": "^4.2.6", "@types/lodash.padstart": "^4.6.6", "@types/node": "^12.0.2", "@types/url-join": "^4.0.0", "@types/whatwg-url": "^6.4.0", "@typescript-eslint/eslint-plugin": "^1.9.0", "@typescript-eslint/parser": "^1.9.0", "babel-eslint": "^10.0.1", "babel-polyfill": "^6.26.0", "babel-preset-minify": "^0.5.0", "eslint": "^5.0.0", "husky": "^3.0.0", "jasmine": "^3.4.0", "jest": "^24.8.0", "sort-package-json": "^1.22.1", "source-map": "~0.7.3", "stats-lite": "^2.2.0", "typescript": "^3.4.5" }, "engines": { "node": ">=6.0.0", "npm": ">=4.0.0" }, "License": "MIT" }