sounisi5011/metalsmith-netlify-published-date

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "@sounisi5011/metalsmith-netlify-published-date",
  "version": "0.3.2",
  "description": "Get published date and modified date of the each page published by Netlify",
  "keywords": [
    "date",
    "metalsmith",
    "metalsmith-plugin",
    "netlify",
    "plugin"
  ],
  "homepage": "https://github.com/sounisi5011/metalsmith-netlify-published-date#readme",
  "bugs": {
    "url": "https://github.com/sounisi5011/metalsmith-netlify-published-date/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/sounisi5011/metalsmith-netlify-published-date.git"
  },
  "license": "MIT",
  "author": "sounisi5011",
  "files": [
    "dist/"
  ],
  "main": "dist/index",
  "types": "dist/index.d.ts",
  "directories": {
    "test": "test"
  },
  "scripts": {
    "build": "tsc",
    "build:readme": "readme-generator --template ./.template/README.mustache",
    "clean": "del './dist/' './test/fixtures/*/{build,cache}/' './example/{node_modules,build}/'",
    "fmt-pkg": "run-s fmt-pkg:prettier fmt-pkg:sort",
    "fmt-pkg:prettier": "prettier-package-json --write ./package.json",
    "fmt-pkg:sort": "sort-package-json '**/package.json' '!**/node_modules'",
    "fmt-ts": "run-s fmt-ts:prettier 'lint:eslint -- --fix'",
    "fmt-ts:prettier": "prettier --write '**/*.ts'",
    "lint": "run-p lint:*",
    "lint:eslint": "eslint --ext .ts ./",
    "lint:tsc-src": "tsc --noEmit",
    "lint:tsc-test": "tsc -p ./test/ --noEmit",
    "release": "run-s release:validation release:build release:publish",
    "release:build": "run-s clean build",
    "release:publish": "run-s release:publish:git release:publish:npm",
    "release:publish:git": "package-version-git-tag --verbose --push",
    "release:publish:npm": "npm publish --access=public",
    "release:validation": "npm-run-all release:validation:publishable -p 'release:validation:!(publishable)' test",
    "release:validation:git-branch": "git-branch-is master",
    "release:validation:git-work-dir": "is-git-status-clean",
    "release:validation:publishable": "can-npm-publish --verbose",
    "test": "run-s test:readme test:peer-deps lint test:ava test:check-type-defs-pkgs",
    "test:ava": "ava",
    "test:check-type-defs-pkgs": "node script/check-type-defs-pkgs.js ./dist/ build",
    "test:peer-deps": "check-peer-deps",
    "test:readme": "run-s 'build:readme -- --test'"
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "lint-staged": {
    "!(package).json|*.{html,js,yaml,yml,toml}": [
      "prettier --write",
      "git add"
    ],
    "*.ts": [
      "prettier --write",
      "eslint --fix",
      "git add"
    ],
    "./!(README.md)**": [
      "run-s build:readme --",
      "git add ./README.md"
    ],
    "./README.md": [
      "run-s test:readme --"
    ],
    "package.json": [
      "prettier-package-json --write",
      "sort-package-json",
      "git add"
    ]
  },
  "ava": {
    "compileEnhancements": false,
    "extensions": [
      "ts"
    ],
    "files": [
      "./test/**/*.ts"
    ],
    "helpers": [
      "**/{fixtures,helpers}/**/*"
    ],
    "require": [
      "ts-node/register/transpile-only"
    ]
  },
  "dependencies": {
    "@types/debug": "4.1.5",
    "@types/metalsmith": "2.3.0",
    "debug": "4.1.1",
    "deep-freeze-strict": "1.1.1",
    "flat-cache": "2.0.1",
    "import-cwd": "3.0.0",
    "multimatch": "4.0.0",
    "object-rollback": "1.0.0",
    "parse-link-header": "1.0.1"
  },
  "devDependencies": {
    "@sounisi5011/check-peer-deps": "github:sounisi5011/check-peer-deps",
    "@sounisi5011/readme-generator": "file:script/readme-generator",
    "@types/deep-freeze-strict": "1.1.0",
    "@types/flat-cache": "2.0.0",
    "@types/lodash.clonedeep": "4.5.6",
    "@types/mustache": "0.8.32",
    "@types/node": "12.x",
    "@types/parse-link-header": "1.0.0",
    "@typescript-eslint/eslint-plugin": "2.14.0",
    "@typescript-eslint/parser": "2.14.0",
    "ava": "2.4.0",
    "can-npm-publish": "1.3.2",
    "del": "5.1.0",
    "del-cli": "3.0.0",
    "escape-string-regexp": "2.0.0",
    "eslint": "6.8.0",
    "eslint-config-prettier": "6.9.0",
    "eslint-config-standard": "14.1.0",
    "eslint-plugin-import": "2.19.1",
    "eslint-plugin-node": "11.0.0",
    "eslint-plugin-prettier": "3.1.2",
    "eslint-plugin-promise": "4.2.1",
    "eslint-plugin-simple-import-sort": "5.0.0",
    "eslint-plugin-standard": "4.0.1",
    "git-branch-is": "3.1.0",
    "husky": "3.1.0",
    "is-git-status-clean": "1.0.0",
    "lint-staged": "9.5.0",
    "lodash.clonedeep": "4.5.0",
    "metalsmith": "2.3.0",
    "mustache": "3.2.1",
    "nock": "11.7.1",
    "npm-run-all": "4.1.5",
    "package-version-git-tag": "2.0.2",
    "prettier": "1.19.1",
    "prettier-package-json": "2.1.3",
    "prettier-plugin-toml": "0.3.1",
    "sort-package-json": "1.36.0",
    "ts-node": "8.5.4",
    "typescript": "3.7.4"
  },
  "peerDependencies": {
    "metalsmith": ">=2.3.0"
  },
  "engines": {
    "node": ">=8.3.0"
  },
  "publishConfig": {
    "access": "public"
  }
}