-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.89 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
{
"name": "generator-12deg-library",
"version": "1.0.6",
"description": "A yeoman generator for creating a multi-package nodejs library",
"keywords": [
"devops",
"generator",
"library",
"package",
"yeoman"
],
"homepage": "https://github.com/12deg/generator-12deg-library",
"repository": {
"type": "git",
"url": "git+https://github.com/12deg/generator-12deg-library.git"
},
"license": "MIT",
"author": {
"name": "12 Degres SAS",
"email": "info@12deg.com",
"url": "https://12deg.com"
},
"type": "module",
"exports": "./generators/app/index.js",
"files": [
"generators"
],
"scripts": {
"commitlint": "node @commitlint/prompt-cli/cli.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepare": "husky",
"sort-package": "npx sort-package-json",
"pretest": "eslint .",
"test": "jest --passWithNoTests"
},
"jest": {
"modulePathIgnorePatterns": [
"node_modules/",
"generators/.*/templates/"
],
"testEnvironment": "node"
},
"dependencies": {
"yeoman-environment": "4.4.3",
"yeoman-generator": "7.3.3",
"yosay": "3.0.0"
},
"devDependencies": {
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@eslint/eslintrc": "3.1.0",
"@eslint/js": "9.13.0",
"@typescript-eslint/eslint-plugin": "8.11.0",
"chalk": "5.3.0",
"eslint": "9.13.0",
"eslint-config-prettier": "9.1.0",
"eslint-config-xo": "0.46.0",
"eslint-plugin-n": "17.11.1",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-promise": "7.1.0",
"globals": "15.11.0",
"husky": "9.1.6",
"jest": "29.7.0",
"lint-staged": "15.2.10",
"prettier": "3.3.3",
"shipjs": "0.26.4",
"typescript": "5.5.4",
"typescript-eslint": "8.11.0",
"yeoman-assert": "3.1.1",
"yeoman-test": "8.3.0"
},
"engines": {
"node": ">=20 <22"
}
}