UNPKG

3.66 kBJSONView Raw
1{
2 "name": "i18next",
3 "version": "19.6.3",
4 "description": "i18next internationalization framework",
5 "main": "./dist/cjs/i18next.js",
6 "module": "./dist/esm/i18next.js",
7 "types": "./index.d.ts",
8 "keywords": [
9 "i18next",
10 "internationalization",
11 "i18n",
12 "translation",
13 "localization",
14 "l10n",
15 "globalization",
16 "gettext"
17 ],
18 "homepage": "http://i18next.com",
19 "bugs": "https://github.com/i18next/i18next/issues",
20 "repository": {
21 "type": "git",
22 "url": "https://github.com/i18next/i18next.git"
23 },
24 "dependencies": {
25 "@babel/runtime": "^7.10.1"
26 },
27 "devDependencies": {
28 "@babel/core": "^7.10.1",
29 "@babel/plugin-proposal-async-generator-functions": "^7.2.0",
30 "@babel/plugin-proposal-object-rest-spread": "^7.3.2",
31 "@babel/plugin-transform-modules-commonjs": "^7.2.0",
32 "@babel/plugin-transform-runtime": "^7.2.0",
33 "@babel/polyfill": "^7.2.5",
34 "@babel/preset-env": "^7.3.1",
35 "@babel/preset-react": "^7.0.0",
36 "@babel/register": "^7.0.0",
37 "babel-eslint": "^10.0.1",
38 "babelify": "^10.0.0",
39 "browserify": "14.0.0",
40 "browserify-istanbul": "2.0.0",
41 "chai": "3.5.0",
42 "coveralls": "2.11.16",
43 "cpy-cli": "^2.0.0",
44 "dtslint": "^0.4.2",
45 "eslint": "3.15.0",
46 "eslint-config-airbnb": "14.1.0",
47 "eslint-config-prettier": "^3.6.0",
48 "eslint-plugin-import": "2.2.0",
49 "eslint-plugin-jsx-a11y": "4.0.0",
50 "eslint-plugin-react": "6.9.0",
51 "husky": "^1.3.1",
52 "i18next-browser-languagedetector": "1.0.1",
53 "i18next-localstorage-cache": "0.3.0",
54 "i18next-sprintf-postprocessor": "0.2.2",
55 "i18next-xhr-backend": "1.3.0",
56 "istanbul": "gotwarlost/istanbul#source-map",
57 "karma": "2.0.0",
58 "karma-browserify": "5.1.1",
59 "karma-chai": "0.1.0",
60 "karma-chrome-launcher": "2.2.0",
61 "karma-cli": "1.0.1",
62 "karma-coverage": "douglasduteil/karma-coverage#next",
63 "karma-coveralls": "1.1.2",
64 "karma-expect": "1.1.3",
65 "karma-mocha": "1.3.0",
66 "karma-rollup-preprocessor": "3.0.3",
67 "karma-sinon": "1.0.5",
68 "karma-spec-reporter": "0.0.26",
69 "lint-staged": "^8.1.0",
70 "mocha": "3.2.0",
71 "prettier": "^1.15.3",
72 "rimraf": "2.5.4",
73 "rollup": "1.1.2",
74 "rollup-plugin-babel": "^4.3.2",
75 "rollup-plugin-commonjs": "^9.2.0",
76 "rollup-plugin-node-resolve": "4.0.0",
77 "rollup-plugin-terser": "^4.0.4",
78 "sinon": "1.17.7",
79 "tslint": "^5.12.1",
80 "typescript": "^3.6.4",
81 "watchify": "3.9.0"
82 },
83 "scripts": {
84 "pretest": "npm run test:typescript && npm run test:typescript:noninterop",
85 "test": "npm run test:new && npm run test:compat",
86 "test:new": "karma start karma.conf.js --singleRun",
87 "test:compat": "karma start karma.backward.conf.js --singleRun",
88 "test:typescript": "tslint --project tsconfig.json",
89 "test:typescript:noninterop": "tslint --project tsconfig.nonEsModuleInterop.json",
90 "tdd": "karma start karma.conf.js",
91 "tdd:compat": "karma start karma.backward.conf.js",
92 "build": "rimraf dist && rollup -c && cpy \"./dist/umd/*.js\" ./",
93 "preversion": "npm run test && npm run build && git push",
94 "postversion": "git push && git push --tags",
95 "prettier": "prettier --write \"{,**/}*.{ts,tsx,js,json,md}\""
96 },
97 "author": "Jan Mühlemann <jan.muehlemann@gmail.com> (https://github.com/jamuhl)",
98 "license": "MIT",
99 "husky": {
100 "hooks": {
101 "pre-commit": "lint-staged"
102 }
103 },
104 "lint-staged": {
105 "linters": {
106 "*.{ts,tsx,js,json,md}": [
107 "prettier --write",
108 "git add"
109 ]
110 },
111 "ignore": [
112 "**/i18next.js",
113 "**/i18next.min.js"
114 ]
115 }
116}