async-ray
Version:
Allow perform every, filter, find, findIndex, forEach, map, reduce, reduceRight and some on array using Async callback
71 lines (70 loc) • 1.91 kB
JSON
{
"name": "async-ray",
"description": "Allow perform every, filter, find, findIndex, forEach, map, reduce, reduceRight and some on array using Async callback",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"version": "3.2.0",
"scripts": {
"pretest": "npm run build",
"test": "nyc mocha",
"test-coverage-report": "npm test && cat ./coverage/lcov.info | codacy-coverage && rm -rf ./coverage",
"build": "tsc",
"format": "prettier --write \"**/*.ts\" \"**/*.js\"",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A lib",
"postversion": "git push && git push --tags",
"doc-gen": "typedoc --out doc --theme minimal `find test -name '*.ts' -not -path '*test*' -not -path '*dist*'`",
"sample": "ts-node examples/chain_sample_1.ts && ts-node examples/chain_sample_2.ts"
},
"author": "Ruwan Geeganage",
"license": "MIT",
"devDependencies": {
"@types/mocha": "^5.2.5",
"axios": "^0.18.0",
"codacy-coverage": "^3.3.0",
"mocha": "^7.1.2",
"nyc": "^15.0.1",
"prettier": "^1.14.3",
"should": "^13.2.3",
"source-map-support": "^0.5.9",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"typescript": "^3.8.3"
},
"repository": {
"type": "git",
"url": "git://github.com/rpgeeganage/async-ray.git"
},
"dependencies": {},
"nyc": {
"extension": [
".ts"
],
"exclude": [
"**/*.d.ts",
"test/*.ts",
"examples/*.ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"lcov",
"text-summary",
"html"
],
"sourceMap": true,
"instrument": true
},
"keywords": [
"Array",
"Async/Await",
"async/await",
"array",
"ES2017"
]
}