{
  "name": "prray",
  "version": "0.8.2",
  "description": "'Promisified' Array, it compatible with the original Array but comes with async versions of native Array methods, such as `mapAsync`, `filterAsync`, `reduceAsync`, `sortAsync`, `findAsync`, `findIndexAsync`, `everyAsync`, `someAsync`, `forEachAsync`...",
  "main": "./dist/src/index",
  "typings": "./dist/src/index.d.ts",
  "dependencies": {},
  "scripts": {
    "test": "rm -rf dist && npm run compile && nyc ava ./dist/test/*.test.js",
    "compile": "tsc",
    "prettier": "prettier --config .prettierrc --write '**/*.ts'",
    "prepublish": "npm run prettier && npm run test"
  },
  "husky": {
    "hooks": {
      "pre-commit": "pretty-quick --staged --config .prettierrc --write '**/*.ts'",
      "pre-push": "npm run prettier && npm run test"
    }
  },
  "repository": "Bin-Huang/prray",
  "homepage": "https://github.com/Bin-Huang/prray",
  "keywords": [
    "promise",
    "promisified",
    "array",
    "async",
    "p",
    "concurrency",
    "bluebird"
  ],
  "author": "Ben Huang",
  "license": "MIT",
  "devDependencies": {
    "@types/sinon": "^7.5.0",
    "ava": "^3.5.0",
    "husky": "^3.0.7",
    "nyc": "^15.0.0",
    "prettier": "^1.18.2",
    "pretty-quick": "^1.11.1",
    "sinon": "^7.4.2",
    "typescript": "^3.6.3"
  },
  "files": [
    "README.md",
    "package.json",
    "LICENSE.md",
    "dist/src"
  ]
}
