This repository was archived by the owner on Jan 16, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
114 lines (114 loc) · 4.04 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "ilib-address",
"version": "1.0.1",
"main": "./lib/index.js",
"module": "./src/index.js",
"exports": {
".": {
"import": "./src/index.js",
"require": "./lib/index.js"
},
"./assemble.mjs": "./assemble.mjs"
},
"description": "Classes to parse and format mailing addresses",
"keywords": [
"internationalization",
"i18n",
"localization",
"l10n",
"globalization",
"g11n",
"date",
"time",
"format",
"locale",
"translation",
"address"
],
"homepage": "https://github.com/iLib-js/ilib-address",
"bugs": "https://github.com/iLib-js/ilib-address/issues",
"email": "[email protected]",
"license": "Apache-2.0",
"author": {
"name": "Edwin Hoogerbeets",
"web": "http://www.translationcircle.com/",
"email": "[email protected]"
},
"contributors": [
{
"name": "Edwin Hoogerbeets",
"email": "[email protected]"
},
{
"name": "Goun Lee",
"email": "[email protected]"
}
],
"files": [
"assemble.mjs",
"src",
"locale",
"lib",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "[email protected]:iLib-js/ilib-address.git"
},
"scripts": {
"build": "npm run build:prod",
"build:prod": "grunt babel --mode=prod",
"build:dev": "grunt babel --mode=dev",
"build:webtest": "webpack-cli --config webpack-test.config.js",
"build:pkg": "echo '{\"type\": \"commonjs\"}' > lib/package.json",
"build:locales": "echo '{\"locales\":[' $(cat locales.txt) ']}' > locales.json ; echo 'export const localeList = ' > test/locales.js ; cat locales.json >> test/locales.js",
"build:assemble": "npm-run-all build:locales ; ilib-assemble -m . --resources ./locale --localefile ./locales.json assembled src",
"build:test": "npm-run-all build:locales build:dev build:assemble build:webtest",
"dist": "npm-run-all doc build:prod build:pkg; npm pack",
"test": "npm-run-all test:cli",
"test:cli": "LANG=en_US.UTF8 npm-run-all build:locales build:dev ; bash test/testSuite.sh",
"test:web": "LANG=en_US.UTF8 npm run build:test ; open-cli ./test/testSuite.html ; open-cli ./test/testSuite.html -- firefox",
"test:all": "npm-run-all test:cli test:web",
"debug": "npm run build:dev ; node --inspect-brk test/testSuite.js",
"clean": "git clean -f -d src test; rm -rf lib assembled *.tgz assembled locales.json",
"doc": "mkdir -p docs ; jsdoc2md -c jsdoc.json --separators --source src/* -m table > docs/ilibAddress.md ; npm run doc:html",
"doc:html": "jsdoc -c jsdoc.json"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@babel/register": "^7.25.9",
"@babel/runtime": "^7.26.0",
"@open-wc/webpack-import-meta-loader": "^0.4.7",
"assertextras": "^1.1.0",
"babel-loader": "^9.2.1",
"babel-plugin-add-module-exports": "^1.0.4",
"babel-plugin-module-resolver": "^5.0.2",
"babel-plugin-transform-import-meta": "^2.2.1",
"docdash": "^2.0.2",
"grunt": "^1.6.1",
"grunt-babel": "^8.0.0",
"grunt-cli": "^1.5.0",
"grunt-contrib-clean": "^2.0.1",
"grunt-contrib-uglify": "^5.2.2",
"ilib-assemble": "^1.2.1",
"jsdoc": "^4.0.4",
"jsdoc-to-markdown": "^9.0.4",
"load-grunt-tasks": "^5.1.0",
"nodeunit": "^0.11.3",
"npm-run-all": "^4.1.5",
"open-cli": "^8.0.0",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"ilib-common": "^1.1.3",
"ilib-ctype": "^1.2.1",
"ilib-env": "^1.4.0",
"ilib-istring": "^1.1.0",
"ilib-locale": "^1.2.2",
"ilib-localedata": "^1.5.0",
"ilib-resbundle": "^1.0.2"
}
}