Skip to main content
Module

x/i18next_http_backend/package.json

i18next-http-backend is a backend layer for i18next using in Node.js, in the browser and for Deno.
Go to Latest
File
{ "name": "i18next-http-backend", "version": "1.0.1", "private": false, "type": "module", "main": "./cjs/index.js", "exports": { ".": { "require": "./cjs/index.js", "default": "./lib/index.js" } }, "module": "./lib/index.js", "dependencies": { "node-fetch": "2.6.0" }, "types": "./index.d.ts", "devDependencies": { "@babel/cli": "7.8.4", "@babel/core": "7.9.0", "@babel/preset-env": "7.9.5", "babel-plugin-add-module-exports": "1.0.2", "browserify": "16.5.1", "eslint": "6.8.0", "eslint-config-standard": "14.1.1", "eslint-plugin-import": "2.20.1", "eslint-plugin-node": "11.0.0", "eslint-plugin-promise": "4.2.1", "eslint-plugin-require-path-exists": "1.1.9", "eslint-plugin-standard": "4.0.1", "expect.js": "0.3.1", "i18next": "19.4.1", "json-server": "0.16.1", "json5": "2.1.3", "mocha": "7.1.1", "uglify-js": "3.8.1", "xmlhttprequest": "1.8.0" }, "description": "i18next-http-backend is a backend layer for i18next using in node.js, in the browser and for deno.", "keywords": [ "i18next", "i18next-backend", "i18next-http-backend" ], "homepage": "https://github.com/i18next/i18next-http-backend", "repository": { "type": "git", "url": "git@github.com:i18next/i18next-http-backend.git" }, "bugs": { "url": "https://github.com/i18next/i18next-http-backend/issues" }, "licenses": [ { "type": "MIT", "url": "https://raw.github.com/i18next/i18next-http-backend/master/licence" } ], "scripts": { "lint": "eslint .", "compile": "rm -rf cjs && mkdir cjs && babel lib -d cjs --presets=@babel/preset-env --plugins=add-module-exports && echo '{\"type\":\"commonjs\"}' > cjs/package.json", "browser": "browserify --standalone i18nextHttpBackend cjs/index.js -o i18nextHttpBackend.js && uglifyjs i18nextHttpBackend.js --compress --mangle -o i18nextHttpBackend.min.js", "build": "npm run compile && npm run browser", "test:xmlhttpreq": "mocha test -R spec --require test/fixtures/xmlHttpRequest.cjs --exit --experimental-modules", "test:fetch": "mocha test -R spec --exit --experimental-modules", "test": "npm run lint && npm run build && npm run test:fetch && npm run test:xmlhttpreq", "preversion": "npm run test && npm run build && git push", "postversion": "git push && git push --tags" }}