-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
82 lines (82 loc) · 2.09 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
{
"name": "cldr",
"version": "7.7.0",
"description": "Library for extracting data from CLDR (the Unicode Common Locale Data Repository)",
"main": "lib/cldr.js",
"scripts": {
"test": "mocha --check-leaks",
"lint": "eslint . && prettier --check '**/*.{js,md}'",
"preversion": "npm test",
"test:ci": "npm run coverage",
"coverage": "NODE_ENV=development nyc --reporter=lcov --reporter=text --all -x lib/cldrPluralRuleTermFunctionByName.js -- npm test && echo google-chrome coverage/lcov-report/index.html",
"version": "offline-github-changelog --next=${npm_new_version} > CHANGELOG.md && git add CHANGELOG.md"
},
"repository": {
"type": "git",
"url": "git://github.com/papandreou/node-cldr.git"
},
"dependencies": {
"@xmldom/xmldom": "^0.8.3",
"escodegen": "^2.0.0",
"esprima": "^4.0.1",
"memoizeasync": "^1.1.0",
"passerror": "^1.1.1",
"pegjs": "^0.10.0",
"seq": "^0.3.5",
"unicoderegexp": "^0.4.1",
"xpath": "^0.0.34"
},
"devDependencies": {
"coveralls": "^3.0.6",
"eslint": "^8.53.0",
"eslint-config-prettier": "^8.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-mocha": "^10.2.0",
"eslint-plugin-n": "^15.1.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-standard": "^5.0.0",
"mocha": "^10.8.2",
"nyc": "^17.1.0",
"offline-github-changelog": "^3.1.0",
"prettier": "~3.3.3",
"sinon": "^12.0.1",
"unexpected": "^13.2.1",
"unexpected-function-equality": "^3.0.0"
},
"keywords": [
"locale",
"i18n",
"cldr",
"l10n",
"internationalization",
"localization",
"date",
"time",
"interval",
"format",
"formats",
"pattern",
"patterns",
"plural",
"plurals",
"number",
"country",
"territory",
"time",
"zone",
"timezone",
"currency",
"script",
"list",
"units"
],
"author": "Andreas Lind <andreaslindpetersen@gmail.com>",
"license": "BSD-3-Clause",
"nyc": {
"include": [
"lib/**"
]
}
}