UNPKG

node-plop

Version:

programmatic plopping for fun and profit

80 lines (79 loc) 2.61 kB
{ "name": "node-plop", "version": "0.3.0", "description": "programmatic plopping for fun and profit", "main": "lib/index.js", "scripts": { "clean": "node ./build-scripts/clean", "develop": "npm run compile && (npm run compile-watch & npm run test-watch)", "compile-watch": "babel src --watch --out-dir lib", "compile": "npm run clean && babel src --out-dir lib", "test": "ava", "test-watch": "ava --watch", "prepublish": "npm run compile" }, "repository": { "type": "git", "url": "git+https://github.com/amwmedia/node-plop.git" }, "keywords": [ "plop", "node", "automation" ], "author": "Andrew Worcester <andrew@amwmedia.com> (http://amwmedia.com)", "license": "MIT", "bugs": { "url": "https://github.com/amwmedia/node-plop/issues" }, "homepage": "https://github.com/amwmedia/node-plop#readme", "engines": { "node": ">=4.0" }, "devDependencies": { "ava": "^0.16.0", "babel-cli": "^6.16.0", "babel-plugin-check-es2015-constants": "^6.8.0", "babel-plugin-transform-es2015-arrow-functions": "^6.8.0", "babel-plugin-transform-es2015-block-scoped-functions": "^6.8.0", "babel-plugin-transform-es2015-block-scoping": "^6.8.0", "babel-plugin-transform-es2015-classes": "^6.8.0", "babel-plugin-transform-es2015-computed-properties": "^6.8.0", "babel-plugin-transform-es2015-destructuring": "^6.8.0", "babel-plugin-transform-es2015-duplicate-keys": "^6.8.0", "babel-plugin-transform-es2015-for-of": "^6.8.0", "babel-plugin-transform-es2015-function-name": "^6.8.0", "babel-plugin-transform-es2015-literals": "^6.8.0", "babel-plugin-transform-es2015-modules-commonjs": "^6.8.0", "babel-plugin-transform-es2015-object-super": "^6.8.0", "babel-plugin-transform-es2015-parameters": "^6.8.0", "babel-plugin-transform-es2015-shorthand-properties": "^6.8.0", "babel-plugin-transform-es2015-spread": "^6.8.0", "babel-plugin-transform-es2015-sticky-regex": "^6.8.0", "babel-plugin-transform-es2015-template-literals": "^6.8.0", "babel-plugin-transform-es2015-typeof-symbol": "^6.8.0", "babel-plugin-transform-es2015-unicode-regex": "^6.8.0" }, "dependencies": { "change-case": "^2.3.1", "co": "^4.6.0", "colors": "^1.1.2", "core-js": "^2.4.1", "del": "^2.2.1", "handlebars": "^4.0.5", "inquirer": "^1.2.0", "mkdirp": "^0.5.1", "pify": "^2.3.0" }, "ava": { "files": [ "tests.ava.js" ], "source": [ "tests/*.js", "lib/**/*.js" ], "failFast": true, "tap": true } }