59 lines
1.5 KiB
JSON
59 lines
1.5 KiB
JSON
{
|
|
"name": "plop",
|
|
"version": "4.0.1",
|
|
"description": "Micro-generator framework that makes it easy for an entire team to create files with a level of uniformity",
|
|
"main": "./src/plop.js",
|
|
"type": "module",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/plopjs/plop.git",
|
|
"directory": "packages/plop"
|
|
},
|
|
"keywords": [
|
|
"generator",
|
|
"scaffolding",
|
|
"yeoman",
|
|
"make",
|
|
"build",
|
|
"generate",
|
|
"gen",
|
|
"plop"
|
|
],
|
|
"author": "Andrew Worcester <andrew@amwmedia.com> (http://amwmedia.com)",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/plopjs/plop/issues"
|
|
},
|
|
"scripts": {
|
|
"test": "npm run test:instrument && npm run vitest && nyc report",
|
|
"test:instrument": "nyc instrument ./bin ./instrumented/bin && nyc instrument ./src ./instrumented/src && cp package.json ./instrumented",
|
|
"vitest": "vitest run",
|
|
"prepublishOnly": "node ./scripts/prepublishOnly.js",
|
|
"postpublish": "node ./scripts/postpublish.js"
|
|
},
|
|
"devDependencies": {
|
|
"cli-testing-library": "^2.0.1",
|
|
"inquirer-directory": "^2.2.0",
|
|
"nyc": "^15.1.0",
|
|
"plop-pack-fancy-comments": "^0.2.1",
|
|
"queue-microtask": "^1.2.3",
|
|
"vitest": "^1.1.0"
|
|
},
|
|
"homepage": "https://plopjs.com",
|
|
"dependencies": {
|
|
"@types/liftoff": "^4.0.3",
|
|
"chalk": "^5.3.0",
|
|
"interpret": "^3.1.1",
|
|
"liftoff": "^4.0.0",
|
|
"minimist": "^1.2.8",
|
|
"node-plop": "^0.32.0",
|
|
"ora": "^8.0.0",
|
|
"v8flags": "^4.0.1"
|
|
},
|
|
"engines": {
|
|
"node": ">=18"
|
|
},
|
|
"preferGlobal": true,
|
|
"bin": "./bin/plop.js"
|
|
}
|