{
  "name": "promise-useful-utils",
  "version": "0.2.1",
  "description": "useful functions for working with promises",
  "keywords": [
    "promise",
    "promisify",
    "promisifyAll",
    "fromNode",
    "asCallback",
    "delay",
    "timeout"
  ],
  "bugs": {
    "url": "https://github.com/fanatid/promise-useful-utils/issues"
  },
  "license": "MIT",
  "author": {
    "name": "Kirill Fomichev",
    "email": "fanatid@ya.ru"
  },
  "files": [
    "lib",
    "src",
    "API.md",
    "LICENSE",
    "README.md"
  ],
  "main": "./lib/index.js",
  "repository": {
    "type": "git",
    "url": "https://github.com/fanatid/promise-useful-utils.git"
  },
  "scripts": {
    "prepublish": "npm run clean && npm run compile",
    "compile": "babel --optional runtime -d lib src",
    "coverage": "istanbul cover _mocha -- --compilers js:babel/register test/*.js",
    "coveralls": "npm run coverage && coveralls <coverage/lcov.info",
    "clean": "rm -rf lib/*",
    "lint": "eslint src test",
    "test": "npm run test:node && npm run test:browser",
    "test:browser": "karma start karma.conf.js",
    "test:node": "istanbul test mocha -- --compilers js:babel/register --reporter spec test/*.js"
  },
  "dependencies": {
    "babel-runtime": "^5.8.20",
    "error-system": "^1.0.0"
  },
  "devDependencies": {
    "babel": "^5.8.21",
    "babel-core": "^5.8.22",
    "babel-eslint": "^4.1.1",
    "babelify": "^6.3.0",
    "chai": "^3.2.0",
    "coveralls": "^2.11.3",
    "eslint": "^1.0.0",
    "eslint-config-standard": "^4.3.1",
    "eslint-plugin-standard": "^1.2.0",
    "istanbul": "^0.3.17",
    "karma": "^0.13.8",
    "karma-browserify": "^4.3.0",
    "karma-chrome-launcher": "^0.2.0",
    "karma-detect-browsers": "^2.0.1",
    "karma-firefox-launcher": "^0.1.6",
    "karma-mocha": "^0.2.0",
    "mocha": "^2.3.0",
    "sinon": "^1.16.1",
    "sinon-chai": "^2.8.0"
  }
}
