-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.78 KB
/
package.json
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
{
"name": "@axa-ch/easy-config",
"version": "3.0.0",
"description": "Modern and strict configuration files to build consistently web applications.",
"main": "index.js",
"types": "index.d.ts",
"type": "module",
"scripts": {
"check-formatting": "prettier --check .",
"test": "vitest run & npm run lint && npm run check-formatting",
"lint": "biome check .",
"prepublishOnly": "npm test"
},
"files": [
"index.js",
"biome",
"ts-config",
"stylelint",
"prettier",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/axa-ch/easy-config.git"
},
"keywords": [
"biome",
"stylelint",
"lint",
"format",
"config",
"axa"
],
"peerDependencies": {
"@biomejs/biome": "^1.7.0",
"prettier": "^3.0.0"
},
"optionalDependencies": {
"stylelint": "^16.12.0",
"stylelint-config-standard": "^36.0.1",
"stylelint-config-standard-scss": "^13.0.0 || ^14.0.0",
"stylelint-order": "^6.0.4"
},
"author": "AXA (https://axa.ch)",
"maintainers": [
{
"name": "Gianluca Guarini",
"email": "[email protected]"
},
{
"name": "Corsin Ragettli",
"email": "[email protected]"
},
{
"name": "Valentin Hasler",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/axa-ch/easy-config/issues"
},
"homepage": "https://github.com/axa-ch/easy-config#readme",
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"execa": "^9.5.2",
"prettier": "3.4.2",
"stylelint": "^16.6.1",
"stylelint-config-standard": "^36.0.1",
"stylelint-config-standard-scss": "^13.1.0",
"stylelint-order": "^6.0.4",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
}
}