SimpliField/sf-preferences

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "sf-preferences",
  "version": "1.0.5",
  "description": "Library to easily manage SimpliField preferences.",
  "main": "dist/index.js",
  "scripts": {
    "test": "mocha --compilers js:babel-register src/*.mocha.js",
    "compile": "babel src/*.js --ignore='*.mocha.js' --out-file=dist/index.js",
    "cli": "env NPM_RUN_CLI=1",
    "lint": "eslint src/*.js",
    "prettify": "prettier --write '*.js' 'src/*.js'",
    "preversion": "npm run compile && npm run lint && npm test",
    "doc": "jsdoc2md --files src/index.js > API.md && awk '{print} /^## API$/ {exit}' README.md > build.md && awk 'NR>2' API.md >> build.md && rm API.md && mv build.md README.md",
    "coveralls": "istanbul cover _mocha --report lcovonly -- --compilers js:babel-register src/*.mocha.js -R spec -t 5000 && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage",
    "cover": "istanbul cover --report html _mocha -- --compilers js:babel-register src/*.mocha.js -R spec -t 5000"
  },
  "engines": {
    "node": ">=4.2.0"
  },
  "repository": {
    "type": "git",
    "url": "git://github.com/SimpliField/sf-preferences.git"
  },
  "keywords": [
    "preferences",
    "lib"
  ],
  "author": "Nicolas Froidure (Simplifield)",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/SimpliField/sf-preferences/issues"
  },
  "devDependencies": {
    "babel-cli": "6.26.0",
    "babel-preset-es2015": "6.24.1",
    "babel-register": "6.26.0",
    "coveralls": "3.0.2",
    "eslint": "5.2.0",
    "eslint-config-simplifield": "7.1.0",
    "istanbul": "1.1.0-alpha.1",
    "jsdoc-to-markdown": "4.0.1",
    "mocha": "5.2.0",
    "mocha-lcov-reporter": "1.3.0",
    "prettier": "1.13.7"
  },
  "dependencies": {
    "yerror": "2.1.2"
  }
}