-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.56 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
{
"name": "localized-address-format",
"version": "1.3.1",
"description": "Localized Address Formatting",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"browser": "dist/index.umd.js",
"types": "dist/index.d.ts",
"scripts": {
"update-formats": "ts-node bin/update-formats.ts",
"build": "rm -rf dist && rollup -c",
"lint": "eslint .",
"test": "jest test --coverage",
"prepare": "husky install"
},
"homepage": "https://github.com/DASPRiD/localized-address-format",
"bugs": {
"url": "https://github.com/DASPRiD/localized-address-format/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/DASPRiD/localized-address-format.git"
},
"files": [
"dist/*"
],
"keywords": [
"address",
"formatting",
"l10n",
"localize",
"typescript"
],
"author": "Ben Scholzen 'DASPRiD'",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@rollup/plugin-typescript": "^8.3.1",
"@tsconfig/recommended": "^1.0.1",
"@types/cli-progress": "^3.4.2",
"@types/jest": "^27.0.2",
"@types/node": "^16.9.6",
"@types/node-fetch": "^2.5.12",
"cli-progress": "^3.6.1",
"eslint": "^8.12.0",
"eslint-config-dasprid": "^0.1.12",
"husky": "^7.0.4",
"jest": "^27.2.1",
"lint-staged": "^12.3.7",
"node-fetch": "^2.6.5",
"rollup": "^2.70.1",
"ts-jest": "^27.1.4",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
},
"lint-staged": {
"*.js": "eslint --cache --fix"
}
}