forked from plopjs/plop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.84 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.84 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "plop",
"version": "3.0.5",
"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"
},
"keywords": [
"generator",
"scaffolding",
"yeoman",
"make",
"build",
"generate",
"gen",
"plop"
],
"author": "Andrew Worcester <[email protected]> (http://amwmedia.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/plopjs/plop/issues"
},
"scripts": {
"test": "npm run test:instrument && npm run jest && nyc report",
"test:instrument": "nyc instrument ./bin ./instrumented/bin && nyc instrument ./src ./instrumented/src && cp package.json ./instrumented",
"jest": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"format": "eslint --fix ./",
"prepare": "husky install"
},
"devDependencies": {
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"inquirer-directory": "^2.2.0",
"jest": "^27.3.1",
"jest-snapshot-serializer-ansi": "^1.0.0",
"lint-staged": "^12.1.2",
"nyc": "^15.1.0",
"plop-pack-fancy-comments": "^0.2.0",
"prettier": "^2.5.0",
"queue-microtask": "^1.2.3",
"cli-testing-library": "^1.0.1"
},
"homepage": "https://plopjs.com",
"dependencies": {
"@types/liftoff": "^4.0.0",
"chalk": "^5.0.0",
"interpret": "^2.2.0",
"liftoff": "^4.0.0",
"minimist": "^1.2.5",
"node-plop": "^0.30.0",
"ora": "^6.0.1",
"v8flags": "^4.0.0"
},
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"preferGlobal": true,
"bin": {
"plop": "./bin/plop.js"
},
"lint-staged": {
"*.js": "eslint --cache --fix"
}
}