{
  "name": "promish",
  "version": "5.1.1",
  "description": "ES6 Promise Shim",
  "private": false,
  "license": "MIT",
  "author": {
    "name": "Guyon Roche",
    "email": "guyon@live.com",
    "url": "https://github.com/guyonroche/promish"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/guyonroche/promish.git"
  },
  "keywords": [
    "ES6",
    "Promise",
    "Shim",
    "EcmaScript",
    "Promises",
    "resolve",
    "reject",
    "then",
    "catch",
    "finally",
    "race",
    "all",
    "any",
    "some",
    "spread",
    "Promisify",
    "Promisification",
    "call",
    "apply",
    "map",
    "reduce"
  ],
  "engines": {
    "node": ">=6.0.0"
  },
  "dependencies": {
    "es6-promise": "^3.0.2"
  },
  "devDependencies": {
    "babel-polyfill": "^6.23.0",
    "babel-preset-es2015": "^6.22.0",
    "bluebird": "*",
    "browserify": "^14.1.0",
    "browserify-shim": "^3.8.13",
    "chai": "*",
    "grunt": "^1.0.1",
    "grunt-babel": "^6.0.0",
    "grunt-browserify": "^5.0.0",
    "grunt-contrib-concat": "^1.0.1",
    "grunt-contrib-copy": "^1.0.0",
    "grunt-contrib-jasmine": "^1.1.0",
    "grunt-contrib-uglify": "^2.1.0",
    "grunt-contrib-watch": "^1.0.0",
    "jshint": "2.8.x",
    "mocha": "*",
    "pinkie": "*",
    "q": "*",
    "uglifyjs": "^2.4.10"
  },
  "scripts": {
    "build": "./node_modules/.bin/grunt build",
    "build-es5": "./node_modules/.bin/grunt es5",
    "clean": "rm -rf build/* && rm -rf dist/*",
    "clean-build": "npm run clean && npm run build",
    "jshint": "npm run jshint-lib & npm run jshint-spec",
    "jshint-lib": "node node_modules/jshint/bin/jshint --config ./.jshintrc ./lib --verbose",
    "jshint-spec": "node node_modules/jshint/bin/jshint --config ./.jshintrc-spec ./spec --verbose",
    "test": "npm run unit-test && npm run browser-test",
    "unit-test": "mocha spec/unit",
    "browser-test": "./node_modules/.bin/grunt jasmine",
    "preversion": "npm run clean-build && npm run test",
    "postversion": "git push --no-verify && git push --tags --no-verify"
  },
  "main": "lib/promish.js",
  "files": [
    "lib",
    "dist",
    "LICENSE",
    "README.md"
  ]
}
