-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.38 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
{
"name": "generator-dzangolab-iac",
"version": "1.0.0-rc15",
"description": "",
"keywords": [
"devops",
"yeoman-generator"
],
"homepage": "",
"repository": "generator-dzangolab-iac",
"license": "MIT",
"author": {
"name": "Dzango Technologies",
"email": "info@dzango.com",
"url": "https://dzango.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",
"release": "shipjs prepare"
},
"jest": {
"testEnvironment": "node"
},
"dependencies": {
"yeoman-environment": "4.4.1",
"yeoman-generator": "7.3.2",
"yosay": "3.0.0"
},
"devDependencies": {
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@eslint/js": "9.10.0",
"chalk": "5.3.0",
"eslint": "9.10.0",
"eslint-plugin-n": "17.10.3",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-promise": "7.1.0",
"husky": "9.1.6",
"jest": "29.7.0",
"lint-staged": "15.2.10",
"prettier": "3.3.3",
"shipjs": "0.26.4",
"yeoman-assert": "3.1.1",
"yeoman-test": "9.1.0"
},
"engines": {
"node": "^20.9.0 || >=21.1.0"
}
}