-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
80 lines (80 loc) · 1.67 KB
/
package.json
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
70
71
72
73
74
75
76
77
78
79
80
{
"name": "generator-license",
"version": "5.7.0",
"description": "Generate LICENSE file for your project using Yeoman.",
"homepage": "https://github.com/jozefizso/generator-license",
"author": {
"name": "Jozef Izso",
"url": "https://github.com/jozefizso"
},
"files": [
"app"
],
"main": "app/index.js",
"keywords": [
"yeoman-generator",
"yeoman",
"generator",
"license"
],
"devDependencies": {
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-xo": "^0.43.1",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"prettier": "^3.3.2",
"yeoman-assert": "^3.1.1",
"yeoman-environment": "^3.19.3",
"yeoman-test": "^6.3.0"
},
"bugs": "https://github.com/jozefizso/generator-license/issues",
"repository": {
"type": "git",
"url": "https://github.com/jozefizso/generator-license.git"
},
"engines": {
"node": ">=16"
},
"scripts": {
"test": "jest --coverage",
"lint": "eslint . --fix",
"prepublishOnly": "npm audit --audit-level=high",
"pretest": "eslint ."
},
"dependencies": {
"yeoman-generator": "^5.10.0"
},
"eslintConfig": {
"extends": [
"xo",
"prettier"
],
"env": {
"jest": true,
"node": true
},
"rules": {
"arrow-body-style": "off",
"object-shorthand": [
"error",
"consistent"
],
"prettier/prettier": [
"error",
{
"singleQuote": true,
"printWidth": 90,
"trailingComma": "none"
}
]
},
"plugins": [
"prettier"
]
},
"license": "MIT",
"jest": {
"testEnvironment": "node"
}
}