-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.47 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
{
"version": "1.1.0",
"description": "A tiny (~1.6KB) universal, zero-dependency localized address formatter for postal addresses",
"homepage": "https://github.com/alizeait/tinyaddress#readme",
"bugs": {
"url": "https://github.com/alizeait/tinyaddress/issues"
},
"author": {
"name": "Ali Zeaiter",
"email": "[email protected]"
},
"keywords": [
"address",
"address formatter",
"localized address formatter",
"tiny",
"localization",
"country codes",
"address lines"
],
"repository": {
"type": "git",
"url": "git+https://github.com/alizeait/tinyaddress.git"
},
"name": "tinyaddress",
"main": "./dist/index.js",
"module": "./dist/esm/index.js",
"license": "MIT",
"types": "./dist/index.d.ts",
"sideEffects": false,
"files": [
"dist/**"
],
"scripts": {
"build": "tsup ./src/index.ts --format esm,cjs --legacy-output --clean --minify --dts",
"test": "jest",
"check-types": "tsc",
"generate": "ts-node ./scripts/generate.ts"
},
"devDependencies": {
"@types/jest": "^29.4.0",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"codecov": "^3.8.3",
"eslint": "^8.33.0",
"jest": "^29.4.2",
"prettier": "^2.8.4",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"tsup": "^6.6.0",
"typescript": "^4.9.5",
"undici": "^5.18.0"
},
"packageManager": "[email protected]"
}