版博士V2.0程序
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 

60 строки
1.5 KiB

  1. {
  2. "name": "node-plop",
  3. "version": "0.31.1",
  4. "description": "programmatic plopping for fun and profit",
  5. "main": "src/index.js",
  6. "type": "module",
  7. "types": "types/index.d.ts",
  8. "scripts": {
  9. "test": "npm run test:js && npm run test:typings",
  10. "test:typings": "dtslint types --localTs ../../node_modules/typescript/lib --expectOnly",
  11. "test:js": "vitest run",
  12. "test-watch": "vitest watch",
  13. "develop": "npm run test-watch"
  14. },
  15. "repository": {
  16. "type": "git",
  17. "url": "https://github.com/plopjs/plop.git",
  18. "directory": "packages/node-plop"
  19. },
  20. "keywords": [
  21. "plop",
  22. "generator",
  23. "scaffolding",
  24. "node",
  25. "programmatic",
  26. "automation"
  27. ],
  28. "author": "Andrew Worcester <andrew@amwmedia.com> (http://amwmedia.com)",
  29. "license": "MIT",
  30. "bugs": {
  31. "url": "https://github.com/plopjs/plop/issues"
  32. },
  33. "engines": {
  34. "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
  35. },
  36. "devDependencies": {
  37. "@types/inquirer-autocomplete-prompt": "^1.3.4",
  38. "@types/node": "^17.0.27",
  39. "dtslint": "^4.2.1",
  40. "plop-pack-fancy-comments": "^0.2.1",
  41. "typescript": "^4.6.3",
  42. "vitest": "^0.10.0"
  43. },
  44. "dependencies": {
  45. "@types/inquirer": "^8.2.1",
  46. "change-case": "^4.1.2",
  47. "del": "^6.0.0",
  48. "globby": "^13.1.1",
  49. "handlebars": "^4.4.3",
  50. "inquirer": "^8.2.2",
  51. "isbinaryfile": "^4.0.8",
  52. "lodash.get": "^4.4.2",
  53. "lower-case": "^2.0.2",
  54. "mkdirp": "^1.0.4",
  55. "resolve": "^1.20.0",
  56. "title-case": "^3.0.3",
  57. "upper-case": "^2.0.2"
  58. }
  59. }