-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 3.04 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "skeletonizer",
"version": "2.0.55",
"description": "The way to skeletonize your components",
"private": true,
"scripts": {
"clean": "npm run clean:artifacts && npm run clean:packages && npm run clean:root",
"clean:artifacts": "lerna run clean --parallel",
"clean:packages": "lerna clean --yes",
"clean:root": "rimraf node_modules",
"lint": "lerna run lint --parallel",
"lintfix": "lerna run lintfix --parallel",
"build": "lerna run build",
"type-check": "lerna run type-check --parallel",
"prepare": "husky",
"semantic-release": "HUSKY=0 semantic-release",
"style-lint": "lerna run style-lint --parallel",
"style-lintfix": "lerna run style-lintfix --parallel",
"test": "lerna run test",
"coverage": "lerna run coverage",
"publish-lerna": "HUSKY=0 lerna publish --force-publish"
},
"engines": {
"node": ">=18.12.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lukaVarga/skeletonizer.git"
},
"keywords": [
"skeleton",
"skeletonizer",
"ui",
"loading"
],
"author": "Luka Varga",
"license": "MIT",
"bugs": {
"url": "https://github.com/lukaVarga/skeletonizer/issues"
},
"homepage": "https://github.com/lukaVarga/skeletonizer#readme",
"devDependencies": {
"@eslint/js": "^9.16.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@skeletonizer/styles": "file:packages/utils/src/styles",
"@stylistic/eslint-plugin-ts": "^4.0.1",
"@stylistic/stylelint-plugin": "^3.1.1",
"@types/eslint__js": "^8.42.3",
"codecov": "^3.8.3",
"commitizen": "^4.3.1",
"conventional-changelog-angular": "^8.0.0",
"conventional-changelog-writer": "^8.0.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.16.0",
"globals": "^15.13.0",
"husky": "^9.1.7",
"lerna": "^8.1.9",
"lint-staged": "^15.2.10",
"postcss-html": "^1.7.0",
"rimraf": "^6.0.1",
"semantic-release": "^24.2.0",
"semantic-release-lerna": "^2.9.0",
"stylelint": "^16.11.0",
"stylelint-config-sass-guidelines": "^12.1.0",
"stylelint-config-standard": "^37.0.0",
"stylelint-declaration-strict-value": "^1.10.6",
"stylelint-order": "^6.0.4",
"typescript": "~5.6.3",
"typescript-eslint": "^8.17.0"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
[
"semantic-release-lerna",
{
"generateNotes": true,
"latch": "patch"
}
],
"@semantic-release/changelog",
[
"@semantic-release/git",
{
"assets": [
"CHANGELOG.md",
"lerna.json",
"package.json",
"package-lock.json",
"packages/*/package.json",
"packages/*/package-lock.json"
]
}
]
]
},
"workspaces": [
"packages/utils",
"packages/angular",
"packages/vue"
]
}