-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 loc) · 1.63 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
{
"name": "scaffold-angular",
"version": "0.0.11",
"description": "A comprehensive package that sets up a complete Angular application development environment including ESLint, Prettier, Stylelint, Husky, and Lint-Staged for linting, code formatting, and standardized code quality.",
"repository": {
"type": "git",
"url": "git+https://github.com/EPAM-JS-Competency-center/angular-scaffold.git"
},
"homepage": "https://github.com/EPAM-JS-Competency-center/angular-scaffold#readme",
"bugs": "https://github.com/EPAM-JS-Competency-center/angular-scaffold/issues",
"main": "index.js",
"type": "module",
"scripts": {
"test": "jest",
"prerelease": "jest",
"release": "standard-version"
},
"engines": {
"node": ">= 18"
},
"bin": {
"scaffold-angular": "index.js"
},
"author": {
"name": "Sergey Gultyayev",
"email": "gultyayev.sergey@gmail.com"
},
"license": "MIT",
"dependencies": {
"chalk": "^5.2.0",
"shelljs": "^0.8.5"
},
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/preset-env": "^7.21.4",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@types/jest": "^29.5.1",
"@types/node": "^20.17.0",
"@types/shelljs": "^0.8.12",
"babel-jest": "^29.5.0",
"jest": "^29.5.0",
"lefthook": "^1.7.4",
"prettier": "^3.2.5",
"standard-version": "^9.5.0"
},
"keywords": [
"angular",
"eslint",
"prettier",
"stylelint",
"husky",
"lint-staged",
"linting",
"code formatting",
"code quality",
"code standards",
"pre-commit hooks",
"git hooks",
"project setup"
]
}