-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
44 lines (44 loc) · 1.18 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
{
"name": "plurals-cldr",
"version": "2.0.1",
"description": "Plurals support, generated from CLDR.",
"funding": "https://github.com/nodeca/plurals-cldr?sponsor=1",
"keywords": [
"i18n",
"l10n",
"plural",
"plurals",
"pluralize",
"pluralizer",
"cldr"
],
"author": "Vitaly Puzrin (https://github.com/puzrin)",
"license": "MIT",
"repository": "nodeca/plurals-cldr",
"files": [
"index.js",
"dist/"
],
"scripts": {
"lint": "eslint .",
"test": "npm run lint && nyc mocha",
"covreport": "nyc report --reporter html && nyc report --reporter lcov",
"generate": "node support/generate.js",
"browserify": "rollup -c support/rollup.config.js",
"build": "npm run generate && npm test && npm run browserify",
"cldr-check": "node support/cldr_check.js",
"cldr-update": "node support/cldr_update.js"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.0.6",
"cldr-core": "^40.0.0",
"eslint": "^8.3.0",
"lodash": "^4.16.6",
"mocha": "^9.1.3",
"nyc": "^15.0.1",
"rollup": "^2.60.2",
"rollup-plugin-terser": "^7.0.2",
"terser": "^5.10.0"
}
}