UNPKG

get-modules

Version:

get all filenames from `./modules`

54 lines (53 loc) 1.49 kB
{ "name": "get-modules", "version": "1.0.2", "description": "get all filenames from `./modules`", "license": "MIT", "repository": "1-liners/get-modules", "author": { "name": "stoeffel", "email": "schtoeffel@gmail.com", "url": "schtoeffel.ch" }, "engines": { "node": ">=0.10.0" }, "bin": { "get-modules": "cli.js" }, "scripts": { "prepush": "npm test", "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", "mocha": "mocha --compilers js:babel/register --ui qunit ./tests", "compile": "cd ./module; babel --loose=all ./*.js --out-dir ../", "clean": "rm *.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", "prepublish": "npm test; npm run compile" }, "files": [ "/*.js", "/module/", "/license", "/readme.md" ], "keywords": [ "oneliners", "shorthands", "get-modules" ], "dependencies": { "meow": "^3.1.0" }, "devDependencies": { "babel": "^5.1.10", "coveralls": "^2.11.2", "husky": "^0.7.0", "istanbul": "^0.3.13", "mocha": "^2.2.4", "mocha-lcov-reporter": "0.0.2", "nodangel": "1.3.8" } }