UNPKG

1.44 kBJSONView Raw
1{
2 "name": "babelfish",
3 "version": "1.2.0",
4 "description": "i18n with human friendly syntax",
5 "keywords": [
6 "i18n",
7 "l10n"
8 ],
9 "contributors": [
10 "Aleksey V Zapparov <ixti@member.fsf.org> (http://www.ixti.net/)",
11 "Vitaly Puzrin (https://github.com/puzrin)"
12 ],
13 "license": "MIT",
14 "repository": "nodeca/babelfish",
15 "files": [
16 "index.js",
17 "lib/",
18 "dist/"
19 ],
20 "scripts": {
21 "lint": "eslint .",
22 "test": "npm run lint && nyc mocha",
23 "coverage": "npm run test && nyc report --reporter html",
24 "report-coveralls": "nyc report --reporter=text-lcov | coveralls",
25 "doc": "del doc && node support/build_doc.js",
26 "gh-pages": "npm run doc && gh-pages -d doc -f",
27 "browserify": "browserify -r ./ -s Babelfish -p [ browserify-header --file support/header.js ] > dist/babelfish.js",
28 "minify": "terser dist/babelfish.js -c -m > dist/babelfish.min.js",
29 "build": "npm run browserify && npm run minify",
30 "parser": "pegjs -o speed support/parser.pegjs lib/parser.js",
31 "prepublishOnly": "npm run gh-pages"
32 },
33 "dependencies": {
34 "plurals-cldr": "^1.0.4"
35 },
36 "devDependencies": {
37 "browserify": "^16.5.1",
38 "browserify-header": "^1.0.1",
39 "coveralls": "^3.1.0",
40 "del-cli": "^3.0.1",
41 "eslint": "^7.0.0",
42 "gh-pages": "^2.2.0",
43 "mocha": "^7.1.2",
44 "ndoc": "^5.0.1",
45 "nyc": "^15.0.1",
46 "pegjs": "~0.8.0",
47 "terser": "^4.7.0"
48 }
49}