wikicite/wcite

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "wcite",
  "version": "0.4.4",
  "description": "Use Wikidata as reference manager",
  "homepage": "https://github.com/wikicite/wcite#readme",
  "author": "Jakob Voß",
  "license": "MIT",
  "keywords": [
    "wikidata",
    "wikicite",
    "citation",
    "bibtex",
    "pandoc",
    "csl"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/wikicite/wcite.git"
  },
  "bin": {
    "pwcite": "./bin/pwcite",
    "wcite": "./bin/wcite"
  },
  "main": "index.js",
  "files": [
    "lib/",
    "bin/pwcite",
    "bin/wcite",
    "assets/wikidata-links.js",
    "assets/wikidata-links.css",
    "CHANGELOG.md"
  ],
  "scripts": {
    "test": "mocha",
    "coverage": "nyc mocha",
    "coveralls": "nyc report --reporter=text-lcov | coveralls",
    "lint": "standard",
    "fix": "standard --fix",
    "lint-staged": "lint-staged",
    "examples": "for md in examples/*.md; do pandoc -t json -o examples/$(basename $md .md).json $md; done",
    "home": "pandoc -s -F ./bin/pwcite -F ./bin/wikicite-org --bibliography=home/references.json README.md home/wcite.md -o home/index.html",
    "push-home": "git subtree split --prefix home -b gh-pages && git push -f origin gh-pages:gh-pages"
  },
  "pre-commit": "lint-staged",
  "lint-staged": {
    "*.js": [
      "standard --fix",
      "git add"
    ]
  },
  "engines": {
    "node": ">= 8.0"
  },
  "dependencies": {
    "@citation-js/core": "^0.5.0-alpha.9",
    "@citation-js/plugin-bibtex": "^0.5.0-alpha.9",
    "@citation-js/plugin-csl": "^0.5.0-alpha.9",
    "@citation-js/plugin-wikidata": "^0.5.0-alpha.9",
    "commander": "^3.0.2",
    "yaml": "^1.10.0"
  },
  "devDependencies": {
    "coveralls": "^3.1.0",
    "lint-staged": "^9.5.0",
    "mocha": "^6.2.3",
    "nyc": "^14.0",
    "pre-commit": "^1.2.2",
    "should": "^13.2.3",
    "standard": "^14.3.4"
  }
}