-
Notifications
You must be signed in to change notification settings - Fork 96
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.53 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.53 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
{
"name": "bem-core",
"version": "5.0.0",
"type": "module",
"description": "bem-core Library",
"repository": {
"type": "git",
"url": "git://github.com/bem/bem-core.git"
},
"keywords": [
"bem",
"core"
],
"author": "",
"license": "MPL-2.0",
"engines": {
"node": ">=20"
},
"exports": {
".": "./dist/desktop/bem-core.mjs",
"./build/plugins/*": "./build/plugins/*",
"./*": "./*"
},
"peerDependencies": {
"jquery": "^4.0.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@playwright/test": "^1.58.2",
"chai": "^6.2.2",
"eslint": "^10.0.1",
"globals": "^16.5.0",
"husky": "^9.1.7",
"jquery": "^4.0.0",
"jsdoc": "^4.0.0",
"lint-staged": "^16.2.7",
"mocha": "^11.7.5",
"sinon": "^21.0.1",
"sinon-chai": "^4.0.1",
"vite": "^8.0.1"
},
"scripts": {
"lint": "eslint .",
"test": "node --test build/plugins/vite-plugin-bem-levels.test.js common.blocks/i18n/i18n.test.js",
"test:browser": "playwright test",
"test:browser:ui": "playwright test --ui",
"test:all": "npm test && npm run test:browser",
"build": "BEM_PLATFORM=desktop vite build --config build/vite.config.js && BEM_PLATFORM=touch vite build --config build/vite.config.js",
"build:desktop": "BEM_PLATFORM=desktop vite build --config build/vite.config.js",
"build:touch": "BEM_PLATFORM=touch vite build --config build/vite.config.js",
"docs": "jsdoc -c jsdoc.config.json",
"prepare": "husky"
},
"lint-staged": {
"*.js": "eslint --fix"
}
}