-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.92 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
{
"name": "@cungminh2710/pseudolocalize",
"version": "2.1.0",
"description": "Several implementation of pseudolocalizing ICU strings",
"sideEffects": false,
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist/**"
],
"repository": {
"type": "git",
"url": "git+https://github.com/cungminh2710/pseudolocalize.git"
},
"author": "Minh Cung",
"license": "MIT",
"private": false,
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --dts --treeshake --minify",
"clean": "bin/clean.sh",
"format": "eslint src/*.ts --fix",
"lint": "eslint src/*.ts",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags",
"test": "jest --config jestconfig.json"
},
"devDependencies": {
"@formatjs/icu-messageformat-parser": "2.7.8",
"@formatjs/intl": "2.10.4",
"@types/jest": "29.5.12",
"@typescript-eslint/eslint-plugin": "7.8.0",
"eslint": "8.57.0",
"eslint-config-standard-with-typescript": "43.0.1",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-n": "17.4.0",
"eslint-plugin-promise": "6.6.0",
"eslint-plugin-simple-import-sort": "12.1.0",
"intl-messageformat": "10.5.14",
"jest": "29.7.0",
"ts-jest": "29.1.2",
"tsup": "8.2.4",
"typescript": "5.6.3"
},
"peerDependencies": {
"@formatjs/icu-messageformat-parser": "^2.7.8",
"@formatjs/intl": "^2.10.4",
"intl-messageformat": "^10.5.14",
"typescript": "^5.5.4"
},
"peerDependenciesMeta": {
"typescript": {
"optional": true
}
},
"bugs": {
"url": "https://github.com/cungminh2710/pseudolocalize/issues"
},
"homepage": "https://github.com/cungminh2710/pseudolocalize#readme",
"keywords": [
"pseudolocalize",
"icu",
"i18n",
"l10n"
]
}