-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.58 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.58 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
78
{
"name": "@equinusocio/biome-config",
"version": "1.2.0",
"description": "",
"type": "module",
"keywords": [
"biome",
"config"
],
"repository": {
"type": "git",
"url": "ssh://[email protected]/equinusocio/equinusocio-biome.git"
},
"author": "Mattia Astorino",
"publishConfig": {
"registry": "https://npm.pkg.github.com",
"access": "public"
},
"scripts": {
"lint": "biome lint --no-errors-on-unmatched",
"test": "jest",
"change": "changeset",
"release": "changeset publish",
"postinstall": "husky"
},
"exports": {
"./core": "./src/core.json"
},
"engines": {
"node": ">=20"
},
"lint-staged": {
"*": "biome lint --no-errors-on-unmatched"
},
"peerDependencies": {
"@biomejs/biome": "^2.0.0"
},
"devDependencies": {
"@biomejs/biome": "2.1.1",
"@biomejs/js-api": "2.0.3",
"@biomejs/wasm-nodejs": "2.1.1",
"@changesets/cli": "2.29.5",
"@commitlint/cli": "19.8.1",
"@commitlint/config-conventional": "19.8.1",
"@lasalefamine/tsconfig": "0.1.1",
"@types/jest": "29.5.14",
"@types/node": "24.0.10",
"ajv": "8.17.1",
"biome@beta": "link:biomejs/biome@beta",
"husky": "9.1.7",
"jest": "29.7.0",
"lint-staged": "15.4.3",
"ts-jest": "29.4.0",
"tslib": "2.8.1",
"typescript": "5.8.3"
},
"files": [
"src/**/*"
],
"nyc": {
"all": true,
"extension": [
".ts"
],
"include": [
"dist",
"src"
],
"exclude": [
"**/*.d.ts",
"**/*.test.ts"
],
"reporter": [
"lcov",
"text"
]
}
}