-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
91 lines (91 loc) · 2.16 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
81
82
83
84
85
86
87
88
89
90
91
{
"name": "create-frontend-component",
"version": "1.4.1",
"description": "Framework-agnostic utility to scaffold frontend components by using custom templates",
"scripts": {
"test": "echo \"No test implemented yet\"",
"lint": "eslint cli.js src/**/*.js",
"lint:fix": "eslint --fix cli.js src/**/*.js",
"release": "standard-version",
"release:patch": "standard-version --release-as patch",
"release:minor": "standard-version --release-as minor",
"release:major": "standard-version --release-as major",
"prepare": "husky install"
},
"bin": {
"create-frontend-component": "cli.js"
},
"keywords": [
"component generator",
"frontend",
"scaffolding",
"developer tools"
],
"lint-staged": {
"*.js": "eslint --quiet --fix --max-warnings 1"
},
"standard-version": {
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "chore",
"hidden": true
},
{
"type": "docs",
"hidden": true
},
{
"type": "style",
"hidden": true
},
{
"type": "refactor",
"hidden": true
},
{
"type": "perf",
"hidden": true
},
{
"type": "test",
"hidden": true
}
]
},
"author": "Alexander Noack <[email protected]>, Henning Schneider <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/diva-e/create-frontend-component.git"
},
"bugs": {
"url": "https://github.com/diva-e/create-frontend-component/issues"
},
"dependencies": {
"chalk": "^4.1.0",
"commander": "^7.2.0",
"fs-extra": "^9.1.0",
"gulp": "^4.0.2",
"gulp-rename": "^2.0.0",
"gulp-replace": "^1.0.0",
"gulp-template": "^5.0.0",
"prompts": "^2.4.2",
"yargs": "^15.4.0"
},
"devDependencies": {
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"eslint": "^7.24.0",
"husky": "^6.0.0",
"lint-staged": "^10.5.4",
"standard-version": "^9.2.0"
}
}