|
| 1 | +{ |
| 2 | + "name": "async-iterator-to-stream", |
| 3 | + "version": "1.0.0", |
| 4 | + "license": "ISC", |
| 5 | + "description": "Convert an async iterator/iterable to a readable stream", |
| 6 | + "keywords": [ |
| 7 | + "async", |
| 8 | + "generator", |
| 9 | + "iterable", |
| 10 | + "iteration", |
| 11 | + "iterator", |
| 12 | + "promise", |
| 13 | + "readable", |
| 14 | + "stream" |
| 15 | + ], |
| 16 | + "homepage": "https://github.com/JsCommunity/async-iterator-to-stream", |
| 17 | + "bugs": "https://github.com/JsCommunity/async-iterator-to-stream/issues", |
| 18 | + "repository": { |
| 19 | + "type": "git", |
| 20 | + "url": "https://github.com/JsCommunity/async-iterator-to-stream.git" |
| 21 | + }, |
| 22 | + "preferGlobal": false, |
| 23 | + "main": "dist/", |
| 24 | + "bin": {}, |
| 25 | + "files": [ |
| 26 | + "dist/" |
| 27 | + ], |
| 28 | + "browserslist": [ |
| 29 | + ">2%" |
| 30 | + ], |
| 31 | + "engines": { |
| 32 | + "node": ">=4" |
| 33 | + }, |
| 34 | + "dependencies": { |
| 35 | + "@babel/runtime": "^7.0.0-beta.42", |
| 36 | + "readable-stream": "^2.3.5" |
| 37 | + }, |
| 38 | + "devDependencies": { |
| 39 | + "@babel/cli": "^7.0.0-beta.42", |
| 40 | + "@babel/core": "^7.0.0-beta.42", |
| 41 | + "@babel/plugin-transform-runtime": "^7.0.0-beta.42", |
| 42 | + "@babel/preset-env": "^7.0.0-beta.42", |
| 43 | + "@babel/preset-flow": "^7.0.0-beta.42", |
| 44 | + "babel-core": "^7.0.0-bridge.0", |
| 45 | + "babel-eslint": "^8.2.2", |
| 46 | + "babel-jest": "^21", |
| 47 | + "babel-plugin-lodash": "^3.3.2", |
| 48 | + "cross-env": "^5.1.4", |
| 49 | + "eslint": "^4.19.1", |
| 50 | + "eslint-config-standard": "^11.0.0", |
| 51 | + "eslint-plugin-import": "^2.9.0", |
| 52 | + "eslint-plugin-node": "^6.0.1", |
| 53 | + "eslint-plugin-promise": "^3.7.0", |
| 54 | + "eslint-plugin-standard": "^3.0.1", |
| 55 | + "flow-bin": "^0.68.0", |
| 56 | + "husky": "^0.14.3", |
| 57 | + "jest": "^21", |
| 58 | + "rimraf": "^2.6.2" |
| 59 | + }, |
| 60 | + "scripts": { |
| 61 | + "build": "cross-env NODE_ENV=production babel --source-maps --out-dir=dist/ src/", |
| 62 | + "clean": "rimraf dist/", |
| 63 | + "commitmsg": "npm test", |
| 64 | + "dev": "cross-env NODE_ENV=development babel --watch --source-maps --out-dir=dist/ src/", |
| 65 | + "dev-test": "jest --bail --watch", |
| 66 | + "posttest": "jest", |
| 67 | + "prebuild": "npm run clean", |
| 68 | + "predev": "npm run prebuild", |
| 69 | + "prepublishOnly": "npm run build", |
| 70 | + "pretest": "eslint --ignore-path .gitignore --fix .", |
| 71 | + "test": "flow status" |
| 72 | + }, |
| 73 | + "jest": { |
| 74 | + "collectCoverage": true, |
| 75 | + "testEnvironment": "node", |
| 76 | + "roots": [ |
| 77 | + "<rootDir>/src" |
| 78 | + ], |
| 79 | + "testRegex": "\\.spec\\.js$" |
| 80 | + } |
| 81 | +} |
0 commit comments