-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
101 lines (101 loc) · 2.27 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@draggable/i18n",
"version": "1.0.7",
"description": "A simple yet robust i18n solution for universal JavaScript apps.",
"main": "dist/i18n.es.min.js",
"type": "module",
"files": [
"dist/"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "node --test src/**/*.test.js",
"test:watch": "yarn test -- --reporter min --watch",
"lint": "eslint ./src --ext .js || true",
"start": "webpack-dev-server --mode development",
"semantic-release": "semantic-release",
"dev": "vite",
"build": "vite build",
"preview": "vite preview"
},
"repository": {
"url": "https://github.com/Draggable/i18n",
"type": "git"
},
"keywords": [
"i18n"
],
"author": "Draggable https://draggable.io",
"contributors": [
{
"name": "Kevin Chappell",
"email": "kevin@chappell.dev",
"url": "https://kevin-chappell.com"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Draggable/i18n/issues"
},
"homepage": "https://github.com/Draggable/i18n",
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^12.0.1",
"lefthook": "^1.7.22",
"lint-staged": "^15.2.10",
"semantic-release": "^24.1.3",
"vite": "^5.4.9",
"vite-plugin-banner": "^0.8.0",
"vite-plugin-compression": "^0.5.1"
},
"lint-staged": {
"src/**/*.js": [
"biome lint",
"biome format",
"git add"
]
},
"release": {
"branch": "master",
"verifyConditions": [
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git"
],
"prepare": [
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/git"
]
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"type-enum": [
2,
"always",
[
"build",
"chore",
"ci",
"docs",
"feat",
"fix",
"perf",
"refactor",
"revert",
"style",
"test"
]
]
}
}
}