UNPKG

pipe-js

Version:

A backwards-compatible way of streamlining chained function calls in a readable and functional manner

64 lines 1.9 kB
{ "name": "pipe-js", "version": "1.0.0", "description": "A backwards-compatible way of streamlining chained function calls in a readable and functional manner", "main": "dist/index.js", "scripts": { "commit": "git-cz", "test": "nyc jasmine", "report-coverage": "cat ./coverage/lcov.info | codecov", "prebuild": "rimraf dist", "build:main": "babel --out-dir dist src", "build:main.min": "uglifyjs -c -o dist/index.min.js dist/index.js", "build:umd": "webpack --output-filename index.umd.js", "build:umd.min": "webpack --output-filename index.umd.min.js -p", "build": "npm-run-all --sequential build:*", "semantic-release": "semantic-release pre && npm publish && semantic-release post" }, "repository": { "type": "git", "url": "https://github.com/andrii-maglovanyi/pipe-js.git" }, "keywords": [ "pipes", "streamlining", "function", "calls" ], "files": [ "dist", "README.md" ], "author": "Andrii Maglovanyi <andrii.maglovanyi@gmail.com> (https://andrii-maglovanyi.github.io/)", "license": "MIT", "bugs": { "url": "https://github.com/andrii-maglovanyi/pipe-js/issues" }, "homepage": "https://github.com/andrii-maglovanyi/pipe-js#readme", "devDependencies": { "babel-cli": "^6.24.1", "babel-loader": "^7.1.1", "babel-preset-es2015": "^6.24.1", "babel-preset-stage-2": "^6.24.1", "codecov.io": "^0.1.6", "commitizen": "^2.9.6", "cz-conventional-changelog": "^2.0.0", "ghooks": "^2.0.0", "istanbul": "^0.4.5", "jasmine": "^2.6.0", "npm-run-all": "^4.0.2", "nyc": "^11.0.3", "rimraf": "^2.6.1", "semantic-release": "^6.3.6", "uglify-js": "^3.0.25", "webpack": "^3.3.0" }, "config": { "commitizen": { "path": "./node_modules/cz-conventional-changelog" }, "ghooks": { "pre-commit": "npm run test" } } }