-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
98 lines (98 loc) · 2.77 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
{
"name": "i18n-postal-address",
"version": "0.9.2",
"description": "A JavaScript library to produce international postal addresses formatted by region for node and the web",
"homepage": "https://joaocarmo.com/i18n-postal-address-playground",
"author": "João Carmo",
"license": "MIT",
"browser": "./dist/postal-address.js",
"main": "./dist/postal-address.node.js",
"exports": {
".": {
"import": "./dist/postal-address.js",
"browser": "./dist/postal-address.js",
"require": "./dist/postal-address.node.js"
},
"./strings": {
"require": "./dist/postal-address.strings.node.js"
}
},
"types": "./dist/index.d.ts",
"directories": {
"lib": "lib"
},
"files": [
"dist"
],
"scripts": {
"build:types": "tsc -p tsconfig.declaration.json",
"build": "NODE_ENV=production webpack",
"clean": "rm -rf ./dist/ && rm -rf ./node_modules/.cache/",
"lint:fix": "eslint . --fix",
"lint": "eslint .",
"prepare": "husky",
"pretty:fix": "prettier --write .",
"pretty": "prettier --check .",
"test:functional:strings": "./test-functional/test-strings.js",
"test:functional": "./test-functional/test.js",
"test:unit": "jest",
"test": "jest",
"type-check:watch": "pnpm type-check -- --watch",
"type-check": "tsc --noEmit"
},
"lint-staged": {
"*.{js,ts}": [
"eslint --cache --fix",
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/joaocarmo/i18n-postal-address.git"
},
"bugs": {
"url": "https://github.com/joaocarmo/i18n-postal-address/issues"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"tag": "latest"
},
"keywords": [
"address",
"formatter",
"i18n",
"node",
"postal",
"web"
],
"optionalDependencies": {
"node-postal": "^1.2.0"
},
"devDependencies": {
"@babel/core": "^7.24.9",
"@babel/plugin-transform-runtime": "^7.24.7",
"@babel/preset-env": "^7.25.0",
"@babel/preset-typescript": "^7.24.7",
"@eslint/js": "^9.8.0",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.12",
"@types/node": "^22.5.0",
"@types/node-postal": "^1.1.3",
"babel-jest": "^29.7.0",
"babel-loader": "^9.1.3",
"core-js": "^3.37.1",
"eslint": "^9.8.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.1.3",
"jest": "^29.7.0",
"lint-staged": "^15.2.7",
"node-postal": "^1.1.2",
"prettier": "^3.3.3",
"ts-jest": "^29.2.3",
"typescript": "^5.5.4",
"typescript-eslint": "^8.3.0",
"webpack": "^5.93.0",
"webpack-cli": "^5.1.4"
},
"packageManager": "[email protected]+sha512.38dc6fba8dba35b39340b9700112c2fe1e12f10b17134715a4aa98ccf7bb035e76fd981cf0bb384dfa98f8d6af5481c2bef2f4266a24bfa20c34eb7147ce0b5e"
}