-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.55 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
{
"name": "intljulep",
"version": "0.2.3",
"description": "Super lightweight yet powerful i18n library",
"author": "Laurent Payot",
"license": "MIT",
"keywords": [
"i18n",
"internationalization",
"translate",
"translations",
"minimal",
"small",
"tiny",
"light",
"lightweight",
"plural",
"plurals",
"javascript"
],
"repository": {
"type": "git",
"url": "git+https://github.com/laurentpayot/intljulep.git"
},
"bugs": {
"url": "https://github.com/laurentpayot/intljulep/issues"
},
"homepage": "https://github.com/laurentpayot/intljulep#readme",
"type": "module",
"sideEffects": false,
"exports": {
".": {
"import": {
"types": "./index.d.ts",
"default": "./intljulep.js"
},
"require": {
"types": "./index.d.ts",
"default": "./intljulep.js"
}
}
},
"main": "./intljulep.js",
"types": "./index.d.ts",
"files": [
"intljulep*.js*",
"index.d.ts"
],
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"build:js": "terser intljulep.js --compress module=true --mangle module=true --source-map --output intljulep.min.js",
"size": "printf '_%.0s' {1..40} && echo \"\n\nMinified brotli size:\t`brotli -Zcn intljulep.min.js | wc -c` bytes\nMinified gzip size:\t`gzip -9cn intljulep.min.js | wc -c` bytes\"",
"build": "pnpm build:js && pnpm --silent size",
"test": "node tests",
"prepublish": "pnpm build && pnpm test && git push && git push --tags"
},
"devDependencies": {
"terser": "^5.31.0"
}
}