alykoshin/inline-install

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "inline-install",
  "version": "0.3.6",
  "description": "Inline Installation helper (check if installed, prompt user and install) for Chrome Web Store Extensions",
  "main": "./index.js",
  "scripts": {
    "lint": "eslint -f unix .",
    "inspect": "jsinspect",
    "pretest": "npm run lint && npm run inspect",
    "test": "echo \"Warning: no test specified\" && exit 0",
    "__test": "echo \"Error: no test specified\" && exit 1",
    "_test": "node ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- -R spec ./test/*",
    "test-travis": "./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- -R spec ./test/*",
    "_commit": "git commit -am \"commit by 'npm run commit'\"",
    "_push": "git push --follow-tags",
    "commit-and-push": "npm run _commit && npm test && npm run _push",
    "_patch-release": "npm version patch && npm publish",
    "_minor-release": "npm version minor && npm publish",
    "_major-release": "npm version major && npm publish",
    "patch-release": "npm test && npm run _patch-release && npm run _push",
    "minor-release": "npm test && npm run _minor-release && npm run _push",
    "__major-release": "npm test && npm run _major-release && npm run _push",
    "coverall": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
  },
  "keywords": [
    "inline,install,inlineinstall,webstore,store,chrome,extension"
  ],
  "author": "Alexander <alykoshin@gmail.com>",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/alykoshin/inline-install.git"
  },
  "bugs": {
    "url": "https://github.com/alykoshin/inline-install/issues"
  },
  "homepage": "https://github.com/alykoshin/inline-install",
  "dependencies": {
    "mini-emitter": "0.0.3"
  },
  "devDependencies": {
    "eslint": "^3.19.0",
    "jshint": "^2.9.4",
    "jsinspect": "^0.12.4"
  }
}