-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.55 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.55 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
{
"name": "maquette-query",
"version": "0.11.7",
"description": "Query utility for maquette's virtual DOM",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"prepare": "husky",
"build": "tsc -p ./src/tsconfig.json",
"clean": "rimraf dist",
"format": "prettier --check .",
"format:fix": "prettier --write .",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest run",
"test:watch": "vitest",
"coverage": "vitest run --coverage",
"ci": "npm run format && npm run lint && npm run coverage",
"prepublishOnly": "npm run clean && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/AFASSoftware/maquette-query"
},
"keywords": [
"maquette",
"virtual",
"dom"
],
"author": "johan@johangorter.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/AFASSoftware/maquette-query/issues"
},
"homepage": "https://github.com/AFASSoftware/maquette-query#readme",
"devDependencies": {
"@types/node": "^25.0.8",
"@vitest/coverage-v8": "^4.0.17",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"maquette": "^4.1.3",
"prettier": "^3.7.4",
"rimraf": "^6.1.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.53.0",
"vitest": "^4.0.17"
},
"peerDependencies": {
"maquette": "^3.0.0 || ^4.0.0"
}
}