-
Notifications
You must be signed in to change notification settings - Fork 87
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.43 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.43 KB
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
{
"author": "",
"license": "MPL-2.0",
"name": "bem-components",
"version": "7.0.0",
"description": "BEM Components Library",
"type": "module",
"homepage": "https://bem.info/libs/bem-components/",
"repository": {
"type": "git",
"url": "git://github.com/bem/bem-components.git"
},
"bugs": "https://github.com/bem/bem-components/issues",
"keywords": [
"bem",
"components",
"controls",
"ui"
],
"engines": {
"node": ">=20"
},
"peerDependencies": {
"bem-core": "^5.0.0",
"jquery": "^4.0.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"bem-core": "^5.0.0",
"@playwright/test": "^1.58.2",
"autoprefixer": "^10.4.27",
"bem-xjst": "^8.10.0",
"bh": "^4.2.1",
"chai": "^6.2.2",
"eslint": "^10.0.3",
"globals": "^16.5.0",
"husky": "^9.1.7",
"jquery": "^4.0.0",
"lint-staged": "^16.4.0",
"mocha": "^11.7.5",
"postcss-calc": "^10.1.1",
"postcss-each": "^1.1.0",
"postcss-for": "^2.1.1",
"postcss-import": "^16.1.1",
"postcss-nested": "^7.0.2",
"postcss-reporter": "^7.1.0",
"postcss-simple-vars": "^7.0.1",
"postcss-url": "^10.1.3",
"rebem-css": "^0.2.0",
"sinon": "^21.0.3",
"sinon-chai": "^4.0.1",
"vite": "^8.0.1"
},
"lint-staged": {
"*.js": "eslint --fix"
},
"scripts": {
"dev": "vite --config build/vite.config.js",
"build": "npm run build:desktop && npm run build:touch-pad && npm run build:touch-phone",
"build:desktop": "BEM_PLATFORM=desktop vite build --config build/vite.config.js",
"build:touch-pad": "BEM_PLATFORM=touch-pad vite build --config build/vite.config.js",
"build:touch-phone": "BEM_PLATFORM=touch-phone vite build --config build/vite.config.js",
"lint": "eslint .",
"test": "npm run lint && npm run test:tmpls && npm run test:browser",
"test:all": "npm run test && npm run test:e2e",
"test:tmpls": "node --test test/run-tmpl-specs.js",
"build:bemhtml": "node build/compile-bemhtml.js",
"pretest:browser": "node build/compile-bemhtml.js",
"test:browser": "playwright test --project=browser-specs",
"test:browser:ui": "playwright test --project=browser-specs --ui",
"generate:e2e-fixtures": "node test/e2e/generate-fixtures.js",
"pretest:e2e": "node test/e2e/generate-fixtures.js",
"test:e2e": "playwright test --project=e2e",
"test:e2e:update": "playwright test --project=e2e --update-snapshots",
"prepare": "husky"
}
}