package.json
1 { 2 "name": "async", 3 "description": "Higher-order functions and common patterns for asynchronous code", 4 "version": "3.2.0", 5 "main": "dist/async.js", 6 "author": "Caolan McMahon", 7 "homepage": "https://caolan.github.io/async/", 8 "repository": { 9 "type": "git", 10 "url": "https://github.com/caolan/async.git" 11 }, 12 "bugs": { 13 "url": "https://github.com/caolan/async/issues" 14 }, 15 "keywords": [ 16 "async", 17 "callback", 18 "module", 19 "utility" 20 ], 21 "dependencies": {}, 22 "devDependencies": { 23 "babel-core": "^6.26.3", 24 "babel-eslint": "^8.2.6", 25 "babel-minify": "^0.5.0", 26 "babel-plugin-add-module-exports": "^0.2.1", 27 "babel-plugin-istanbul": "^5.1.4", 28 "babel-plugin-syntax-async-generators": "^6.13.0", 29 "babel-plugin-transform-es2015-modules-commonjs": "^6.26.2", 30 "babel-preset-es2015": "^6.3.13", 31 "babel-preset-es2017": "^6.22.0", 32 "babel-register": "^6.26.0", 33 "babelify": "^8.0.0", 34 "benchmark": "^2.1.1", 35 "bluebird": "^3.4.6", 36 "browserify": "^16.2.3", 37 "chai": "^4.2.0", 38 "cheerio": "^0.22.0", 39 "coveralls": "^3.0.4", 40 "es6-promise": "^2.3.0", 41 "eslint": "^6.0.1", 42 "eslint-plugin-prefer-arrow": "^1.1.5", 43 "fs-extra": "^0.26.7", 44 "jsdoc": "^3.6.2", 45 "karma": "^4.1.0", 46 "karma-browserify": "^5.3.0", 47 "karma-edge-launcher": "^0.4.2", 48 "karma-firefox-launcher": "^1.1.0", 49 "karma-junit-reporter": "^1.2.0", 50 "karma-mocha": "^1.2.0", 51 "karma-mocha-reporter": "^2.2.0", 52 "karma-safari-launcher": "^1.0.0", 53 "mocha": "^6.1.4", 54 "mocha-junit-reporter": "^1.18.0", 55 "native-promise-only": "^0.8.0-a", 56 "nyc": "^14.1.1", 57 "rimraf": "^2.5.0", 58 "rollup": "^0.63.4", 59 "rollup-plugin-node-resolve": "^2.0.0", 60 "rollup-plugin-npm": "^2.0.0", 61 "rsvp": "^3.0.18", 62 "semver": "^5.5.0", 63 "yargs": "^11.0.0" 64 }, 65 "scripts": { 66 "coverage": "nyc npm run mocha-node-test -- --grep @nycinvalid --invert", 67 "coveralls": "npm run coverage && nyc report --reporter=text-lcov | coveralls", 68 "jsdoc": "jsdoc -c ./support/jsdoc/jsdoc.json && node support/jsdoc/jsdoc-fix-html.js", 69 "lint": "eslint --fix lib/ test/ perf/memory.js perf/suites.js perf/benchmark.js support/build/ support/*.js karma.conf.js", 70 "mocha-browser-test": "karma start", 71 "mocha-node-test": "mocha", 72 "mocha-test": "npm run mocha-node-test && npm run mocha-browser-test", 73 "test": "npm run lint && npm run mocha-node-test" 74 }, 75 "license": "MIT", 76 "nyc": { 77 "exclude": [ 78 "test" 79 ] 80 }, 81 "module": "dist/async.mjs" 82 }