UNPKG

array-helper-functions

Version:
73 lines (72 loc) 1.93 kB
{ "name": "array-helper-functions", "version": "1.4.0", "description": "Lightweight Array helper methods", "homepage": "https://github.com/kevinrodrigues/array-helper#readme", "main": "dist/index.js", "scripts": { "prebuild": "rimraf dist", "build": "npm-run-all --parallel build:*", "build:main": "babel --copy-files --out-dir dist --ignore *.spec.js src", "build:umd": "webpack --output-filename index.umd.js", "build:umd.min": "webpack --output-filename index.umd.min.js -p", "lint": "eslint .", "test": "nyc jasmine", "validate": "npm-run-all --parallel lint test build", "precommit": "npm run validate", "commitmsg": "validate-commit-msg", "commit": "git-cz", "report-coverage": "cat ./coverage/lcov.info | codecov", "setup": "npm install && npm run validate" }, "files": [ "dist", "README.md" ], "keywords": [ "Array", "Filter", "Flatten", "Compact", "Partial", "Every", "Map" ], "repository": { "type": "git", "url": "https://github.com/kevinrodrigues/array-helper.git" }, "author": "Kevin Rodrigues", "license": "MIT", "bugs": { "url": "https://github.com/kevinrodrigues/array-helper/issues" }, "dependencies": {}, "devDependencies": { "babel-cli": "^6.26.0", "babel-loader": "^7.1.2", "babel-preset-es2015": "^6.24.1", "codecov": "^2.3.1", "commitizen": "^2.9.6", "cz-conventional-changelog": "^2.0.0", "eslint": "^4.8.0", "eslint-config-airbnb-base": "^12.0.2", "eslint-plugin-import": "^2.7.0", "eslint-plugin-jasmine": "^2.9.1", "husky": "^0.14.3", "npm-run-all": "^4.1.1", "nyc": "^11.2.1", "rimraf": "^2.6.2", "validate-commit-msg": "^2.14.0", "webpack": "^3.8.1" }, "engines": { "node": "6.x", "npm": "3.x" }, "config": { "commitizen": { "path": "cz-conventional-changelog" } } }