-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
189 lines (189 loc) · 5.49 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
{
"name": "@exadel/esl",
"version": "4.18.1",
"private": false,
"description": "Exadel Smart Library (ESL) is the lightweight custom elements library that provide a set of super-flexible components",
"license": "MIT",
"homepage": "https://esl-ui.com/",
"keywords": [
"esl",
"lightweight",
"typescript",
"flexible",
"web components",
"web components utils",
"custom elements",
"custom elements ts",
"component library",
"animate",
"accordion",
"tabs",
"embedded-video",
"scrollbar"
],
"bugs": {
"url": "https://github.com/exadel-inc/esl/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/exadel-inc/esl.git"
},
"publishConfig": {
"access": "public",
"scope": "@exadel"
},
"files": [
"modules/**/*.{js,ts,less,css,md}",
"polyfills/**/*.{js,ts,less,css,md}",
"tsconfig.json",
"CLA.md"
],
"module": "modules/all.js",
"types": "modules/all.d.ts",
"sideEffects": [
"modules/lib.js",
"modules/esl-media/providers/**/*.js",
"modules/esl-share/actions/**/*.js",
"modules/esl-share/buttons/**/*.js",
"src/modules/esl-media/providers/**/*.ts",
"src/modules/esl-share/actions/**/*.ts",
"src/modules/esl-share/buttons/**/*.ts",
"src/modules/lib.ts",
"polyfills/**/*.js",
"src/polyfills/**/*.ts"
],
"workspaces": [
"e2e",
"site",
"eslint"
],
"scripts": {
"start": "cd site && npm run start",
"clean": "rimraf modules polyfills",
"build": "npm run clean && concurrently \"npm run build:less\" \"npm run build:ts\" \"npm run build:docs\"",
"build:ts": "tsc --project tsconfig.build.json",
"build:less": "npm run build:less:cpy && npm run build:less:css",
"build:less:cpy": "copyfiles \"src/**/*.less\" \".\" --up 1 --all",
"build:less:css": "foreach -x \"lessc #{path} #{dir}/#{name}.css\" -i \"**/*.mixin.less\" -g \"modules/{*,*/*,{esl-utils,esl-forms}/*/*}.less\"",
"build:docs": "copyfiles \"src/**/*.md\" \".\" --up 1 --all",
"watch": "concurrently npm:watch:*",
"watch:ts": "tsc --project tsconfig.build.json --watch",
"watch:less": "chokidar --initial \"src/**/*.less\" -c \"npm run build:less\"",
"test": "concurrently \"npm run lint\" \"npm run test:unit\"",
"test:ci": "jest --coverage --silent --noStackTrace",
"test:e2e": "npm run run --workspace e2e",
"test:e2e:update": "npm run run:update --workspace e2e",
"test:unit": "jest --silent --noStackTrace",
"test:report": "jest --coverage",
"lint": "concurrently npm:lint:* && node build/catlog.js \"Linting passed\"",
"lint:js": "eslint \"src/**/*.ts\" \"site/src/**/*.ts\" --max-warnings 3",
"lint:css": "stylelint \"src/**/*.less\" \"site/src/**/*.less\"",
"prepare": "husky && npm run build",
"preversion": "npm test",
"version": "cross-env-shell \"npm version $npm_package_version --no-git-tag-version --ws\" && git add **/package*.json",
"postpack": "npm pack --workspace eslint",
"postpublish": "npm publish --workspace eslint",
"fix:less": "stylelint --fix \"**/*.less\""
},
"dependencies": {
"@types/video.js": "7.3.58",
"@types/youtube": "0.1.0"
},
"devDependencies": {
"@commitlint/cli": "^19.4.1",
"@commitlint/config-conventional": "^19.4.1",
"@exadel/eslint-plugin-esl": "file:eslint",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^10.1.7",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.1",
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"chokidar-cli": "^3.0.0",
"concurrently": "^8.2.2",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"eslint-plugin-editorconfig": "^4.0.3",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-sonarjs": "^1.0.4",
"eslint-plugin-tsdoc": "^0.3.0",
"foreach-cli": "^1.8.1",
"husky": "^9.1.5",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"kleur": "^4.1.5",
"less": "^4.2.0",
"lint-staged": "^15.2.9",
"postcss": "^8.4.41",
"postcss-less": "^6.0.0",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"semantic-release": "^24.1.0",
"smoothscroll-polyfill": "^0.4.4",
"stylelint": "^16.9.0",
"stylelint-prettier": "^5.0.2",
"ts-jest": "^29.2.5",
"typescript": "5.5.4"
},
"browserslist": [
"last 3 versions",
"> 1%",
"not dead"
],
"contributors": [
{
"name": "ala-n",
"email": "[email protected]"
},
{
"name": "ymurashka",
"email": "[email protected]"
},
{
"name": "yadamska",
"email": "[email protected]"
},
{
"name": "dshovchko",
"email": "[email protected]"
},
{
"name": "abarmina",
"email": "[email protected]"
},
{
"name": "alesun",
"email": "[email protected]"
}
],
"maintainers": [
{
"name": "ala-n",
"email": "[email protected]"
},
{
"name": "ymurashka",
"email": "[email protected]"
},
{
"name": "yadamska",
"email": "[email protected]"
},
{
"name": "dshovchko",
"email": "[email protected]"
},
{
"name": "abarmina",
"email": "[email protected]"
},
{
"name": "alesun",
"email": "[email protected]"
}
]
}