-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.32 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.32 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
{
"name": "generator-putout",
"version": "1.2.0",
"description": "A Yeoman generator for creating 🐊Putout plugins",
"keywords": [
"putout",
"yeoman-generator"
],
"homepage": "https://github.com/putoutjs/generator-putout",
"funding": "https://opencollective.com/putout",
"bugs": "https://github.com/putoutjs/generator-putout/issues",
"author": {
"name": "coderaiser",
"url": "https://github.com/coderaiser"
},
"type": "module",
"exports": "./app/index.js",
"files": [
"app",
"lib",
"plugin"
],
"repository": {
"type": "git",
"url": "git://github.com/putoutjs/generator-putout.git"
},
"scripts": {
"test": "madrun test",
"watch:test": "madrun watch:test",
"lint": "madrun lint",
"fresh:lint": "madrun fresh:lint",
"lint:fresh": "madrun lint:fresh",
"fix:lint": "madrun fix:lint",
"coverage": "madrun coverage",
"report": "madrun report"
},
"dependencies": {
"yeoman-generator": "^5.6.1"
},
"devDependencies": {
"c8": "^8.0.1",
"eslint": "^8.0.1",
"eslint-plugin-n": "^15.2.4",
"eslint-plugin-putout": "^20.0.0",
"lerna": "^5.0.0",
"madrun": "^9.0.0",
"nodemon": "^3.0.1",
"putout": "^32.2.0"
},
"peerDependencies": {
"yo": ">=4.0.0"
},
"engines": {
"node": ">=16"
},
"license": "MIT"
}