UNPKG

pogojs

Version:

Library to accompany the Pogo stack

70 lines (69 loc) 2.36 kB
{ "name": "pogojs", "version": "1.0.0", "description": "Library to accompany the Pogo stack", "main": "dist/index.js", "scripts": { "commit": "git-cz", "check-coverage": "nyc check-coverage --statements 50 --functions 50 --branches 30 --lines 50", "report-coverage": "nyc report --reporter=lcov && cat ./coverage/lcov.info | codecov", "watch:test": "npm t -- -w", "test": "mocha \"src/**/*.test.js\" --compilers js:babel-register", "cover": "nyc npm t", "build": "npm-run-all --parallel build:*", "build:main": "babel --out-dir dist src --ignore *.test.js src", "build:umd": "webpack --output-filename index.umd.js", "build:umd.min": "webpack --output-filename index.umd.min.js -p", "prebuild": "rimraf dist", "semantic-release": "semantic-release pre && npm publish && semantic-release post" }, "repository": { "type": "git", "url": "https://github.com/DaveOrDead/pogojs.git" }, "keywords": ["Pogo", "Pogostack", "JS"], "files": ["dist", "README.md"], "author": "David Berner <davidajberner@gmail.com> (https://davidberner.co.uk/)", "license": "MIT", "bugs": { "url": "https://github.com/DaveOrDead/pogojs/issues" }, "homepage": "https://github.com/DaveOrDead/pogojs#readme", "devDependencies": { "babel-cli": "6.26.0", "babel-loader": "7.1.2", "babel-preset-es2015": "6.24.1", "babel-preset-stage-2": "6.24.1", "babel-register": "6.26.0", "chai": "4.1.1", "chai-spies": "0.7.1", "codecov.io": "0.1.6", "commitizen": "2.9.6", "cz-conventional-changelog": "2.0.0", "eslint": "4.5.0", "eslint-config-airbnb": "15.1.0", "eslint-plugin-import": "2.7.0", "ghooks": "2.0.0", "mocha": "3.5.0", "npm-run-all": "4.0.2", "nyc": "11.1.0", "rimraf": "2.6.1", "semantic-release": "^7.0.2", "webpack": "3.5.5" }, "babel": { "presets": ["es2015", "stage-2"] }, "czConfig": { "path": "node_modules/cz-conventional-changelog" }, "config": { "ghooks": { "pre-commit": "npm run test && npm run check-coverage" } } }