-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.18 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.18 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
{
"name": "preact-localization",
"version": "0.0.2",
"description": "Preact internationalization",
"source": "src/index.js",
"main": "dist/preact-localization.js",
"module": "dist/preact-localization.esm.js",
"unpkg": "dist/preact-localization.umd.js",
"scripts": {
"test": "karmatic",
"build": "microbundle",
"prepublishOnly": "npm run build -s"
},
"repository": "apyos/preact-localization",
"keywords": [
"intl",
"i18n",
"internationalization",
"localization",
"preact",
"translate",
"translation"
],
"homepage": "https://github.com/apyos/preact-localization",
"authors": [
"Philippe Schommers <philippe@schommers.be>"
],
"license": "MIT",
"files": [
"dist"
],
"dependencies": {
"dlv": "^1.1.3"
},
"devDependencies": {
"karmatic": "^1.4.0",
"microbundle": "^0.11.0",
"preact": "^10.3.4",
"prettier": "^2.0.1",
"webpack": "^4.42.0"
},
"peerDependencies": {
"preact": ">=10"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"linters": {
"*.{js,json,css,md}": [
"prettier --write",
"git add"
]
}
}
}