{ "name": "1-liners", "version": "0.4.2", "description": "Useful oneliners and shorthand functions", "license": "MIT", "repository": "1-liners/1-liners", "author": { "name": "stoeffel", "email": "schtoeffel@gmail.com", "url": "schtoeffel.ch" }, "engines": { "node": ">=0.10.0" }, "scripts": { "precommit": "npm run docs; npm run create-index; npm run updateCount; git add documentation module/index.js README.md", "develop": "nodangel --watch module --watch tests --exec 'npm --silent test'", "istanbul": "istanbul cover ./node_modules/mocha/bin/_mocha -- --report lcov --compilers js:babel/register --ui qunit ./tests", "docs": "babel-node ./utils/createDocs.js; npm run toc; npm run updateCount", "updateCount": "babel-node ./utils/updateFuncCount.js;", "toc": "doctoc ./documentation/README.md", "mocha": "mocha --compilers js:babel/register --ui qunit ./tests", "compile": "cd ./module; babel --loose=all --plugins object-assign,array-includes --auxiliary-comment-before 'istanbul ignore next' ./*.js --out-dir ../", "clean": "rm -f *.js", "coverage": "npm run compile; npm run istanbul; npm run clean", "coveralls": "npm run compile && npm run istanbul && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && npm run clean", "test": "npm run coverage", "create-index": "module-indexer .", "prepublish": "npm test; npm run create-index; npm run compile", "patch-release": "npm version patch && npm publish && git push --follow-tags", "minor-release": "npm version minor && npm publish && git push --follow-tags", "major-release": "npm version major && npm publish && git push --follow-tags" }, "files": [ "/*.js", "/module/", "/license", "/readme.md" ], "keywords": [ "oneliners", "shorthands" ], "dependencies": {}, "devDependencies": { "babel": "^5.6.3", "babel-core": "^5.5.6", "babel-plugin-array-includes": "^1.1.0", "babel-plugin-object-assign": "^1.2.0", "coveralls": "^2.11.2", "doctoc": "^0.14.1", "dox": "^0.8.0", "get-modules": "^1.0.2", "husky": "^0.8.1", "istanbul": "^0.3.14", "mocha": "^2.2.5", "mocha-lcov-reporter": "0.0.2", "module-indexer": "^1.0.0", "nodangel": "^1.3.8" } }