-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.43 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.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
{
"name": "bubble-card-modules",
"version": "1.0.0",
"description": "Custom modules for Bubble Card",
"type": "module",
"scripts": {
"create-module": "tsx scripts/ts/generate_module.ts",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test:helpers": "npm test -- modules/helpers",
"test:modules": "npm test -- modules --ignore='**/helpers/**'",
"test:watch": "npm test -- --watch",
"test:module": "npm test -- --testPathPattern=modules/$npm_config_module",
"test:coverage": "npm test -- --coverage",
"build": "tsx scripts/ts/build_modules.ts",
"format": "prettier --write \"**/*.{js,yaml,md}\"",
"format:check": "prettier --check \"**/*.{js,yaml,md}\"",
"clean": "rm -rf modules/*/dist coverage reports",
"prepare": "husky install"
},
"dependencies": {
"@jest/globals": "^29.7.0",
"glob": "^11.0.2",
"inquirer": "^12.6.0",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.15.2",
"chalk": "^5.4.1",
"husky": "^9.1.7",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-html-reporter": "^4.1.0",
"jsdom": "^26.1.0",
"lint-staged": "^16.1.2",
"prettier": "^3.5.3",
"ts-jest": "^29.3.2",
"tsx": "^4.19.3",
"typescript": "^5.8.3"
},
"lint-staged": {
"**/*.{js,ts,yaml,yml,md,json}": [
"prettier --write"
]
}
}