wilmoore/dotsplit.js

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "dotsplit.js",
  "description": "Transform dot-delimited strings to array of strings for Node.js and the browser.",
  "version": "1.1.0",
  "author": "Wil Moore III <wil.moore@wilmoore.com>",
  "bugs": {
    "url": "https://github.com/wilmoore/dotsplit.js/issues"
  },
  "dependencies": {},
  "devDependencies": {
    "dependency-check": "^2.4.0",
    "fixpack": "^2.2.0",
    "istanbul": "^0.4.2",
    "nodemon": "^1.3.7",
    "standard": "^5.4.1",
    "tap-spec": "^4.1.1",
    "tape": "^4.0.0",
    "tape-catch": "^1.0.4"
  },
  "homepage": "https://github.com/wilmoore/dotsplit.js",
  "keywords": [
    "array",
    "delimited",
    "dot",
    "namespace",
    "split",
    "string"
  ],
  "license": "MIT",
  "main": "index.js",
  "preferGlobal": false,
  "private": false,
  "repository": {
    "type": "git",
    "url": "https://github.com/wilmoore/dotsplit.js"
  },
  "scripts": {
    "cover": "istanbul cover test.js",
    "dependency-check": "dependency-check ./package.json && dependency-check ./package.json --unused --no-dev",
    "dev": "nodemon -x 'npm run test --silent' -e 'js json'",
    "fixpack": "fixpack",
    "postversion": "git push --follow-tags && npm publish",
    "standard": "standard",
    "test": "npm run dependency-check && npm run standard --silent && node test.js | tap-spec"
  }
}