93 lines
2.5 KiB
JSON
93 lines
2.5 KiB
JSON
{
|
|
"name": "node-plop",
|
|
"version": "0.26.3",
|
|
"description": "programmatic plopping for fun and profit",
|
|
"main": "lib/index.js",
|
|
"types": "types/index.d.ts",
|
|
"scripts": {
|
|
"clean": "node ./build-scripts/clean",
|
|
"eslint": "eslint src/",
|
|
"test": "npm run test:js && npm run test:typings",
|
|
"test:typings": "dtslint types --localTs node_modules/typescript/lib --expectOnly",
|
|
"test:js": "npm run eslint && npm run compile && ava",
|
|
"test-watch": "ava --watch",
|
|
"compile": "npm run clean && babel src --out-dir lib",
|
|
"compile-watch": "babel src --watch --out-dir lib",
|
|
"prepublishOnly": "npm run compile",
|
|
"develop": "npm run clean && (npm run compile-watch & npm run test-watch)"
|
|
},
|
|
"pre-commit": [
|
|
"eslint",
|
|
"test"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/amwmedia/node-plop.git"
|
|
},
|
|
"keywords": [
|
|
"plop",
|
|
"generator",
|
|
"scaffolding",
|
|
"node",
|
|
"programmatic",
|
|
"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": ">=8.9.4"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.6.4",
|
|
"@babel/core": "^7.6.4",
|
|
"@babel/preset-env": "^7.6.3",
|
|
"@babel/register": "^7.6.2",
|
|
"@babel/plugin-transform-runtime": "^7.9.0",
|
|
"@types/node": "^13.13.5",
|
|
"@typescript-eslint/eslint-plugin": "^2.21.0",
|
|
"@typescript-eslint/parser": "^2.21.0",
|
|
"ava": "^2.4.0",
|
|
"dtslint": "^3.5.1",
|
|
"eslint": "^6.8.0",
|
|
"eslint-config-standard": "^14.1.0",
|
|
"eslint-plugin-import": "^2.18.2",
|
|
"eslint-plugin-node": "^10.0.0",
|
|
"eslint-plugin-promise": "^4.2.1",
|
|
"eslint-plugin-standard": "^4.0.1",
|
|
"plop": "^2.4.0",
|
|
"plop-pack-fancy-comments": "^0.2.1",
|
|
"pre-commit": "^1.x",
|
|
"typescript": "^3.8.2"
|
|
},
|
|
"dependencies": {
|
|
"@babel/runtime-corejs3": "^7.9.2",
|
|
"@types/inquirer": "^6.5.0",
|
|
"change-case": "^3.1.0",
|
|
"del": "^5.1.0",
|
|
"globby": "^10.0.1",
|
|
"handlebars": "^4.4.3",
|
|
"inquirer": "^7.1.0",
|
|
"isbinaryfile": "^4.0.2",
|
|
"lodash.get": "^4.4.2",
|
|
"mkdirp": "^0.5.1",
|
|
"resolve": "^1.12.0"
|
|
},
|
|
"ava": {
|
|
"files": [
|
|
"tests/*.ava.js"
|
|
],
|
|
"sources": [
|
|
"tests/**/plopfile.js",
|
|
"lib/**/*.js"
|
|
],
|
|
"require": [
|
|
"@babel/register"
|
|
],
|
|
"tap": true
|
|
}
|
|
}
|