alykoshin/attachable

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "attachable",
  "version": "0.0.3",
  "description": "Simple object to bidirectionally track its attachments (links,connections) to other `attachable` objects",
  "main": "./index.js",
  "scripts": {
    "nsp": "nsp check",
    "lint": "eslint -f unix .",
    "inspect": "jsinspect",
    "pretest": "npm run lint && npm run inspect && npm run nsp",
    "_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": [
    "attach,link,attachable,detach"
  ],
  "author": "Alexander <alykoshin@gmail.com>",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/alykoshin/attachable.git"
  },
  "bugs": {
    "url": "https://github.com/alykoshin/attachable/issues"
  },
  "homepage": "https://github.com/alykoshin/attachable",
  "dependencies": {
    "mini-debug": "0.0.3",
    "mini-emitter": "0.0.3",
    "nsp": "^2.2.0"
  },
  "devDependencies": {
    "chai": "^3.4.1",
    "coveralls": "^2.11.6",
    "eslint": "^1.10.3",
    "istanbul": "^0.4.2",
    "jshint": "^2.9.1-rc2",
    "jsinspect": "^0.7.2",
    "mocha": "^2.3.4",
    "mockery": "^1.4.0"
  }
}