-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.01 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.01 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
{
"name": "@drdk/bem-helper",
"version": "2.0.2",
"description": "Helper function to create BEM-style classnames",
"type": "module",
"main": "./index.js",
"types": "./types.d.ts",
"scripts": {
"test": "npm run test:vitest && npm run test:lint",
"test:vitest": "vitest run",
"test:coverage": "vitest run --coverage",
"test:lint": "biome check",
"test:lint:fix": "biome check --fix",
"prepublish": "npm test",
"prepublishOnly": "drdk-cli prepublish",
"release": "drdk-cli release",
"dev-release": "drdk-cli dev-release"
},
"repository": {
"type": "git",
"url": "git+https://github.com/drdk/bem-helper.git"
},
"keywords": [
"bem",
"css",
"classname"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/drdk/bem-helper/issues"
},
"homepage": "https://github.com/drdk/bem-helper#readme",
"devDependencies": {
"@biomejs/biome": "^2.3.10",
"@drdk/drdk-cli": "^2.0.6",
"@vitest/coverage-v8": "^4.0.16",
"vitest": "^4.0.16"
}
}