{ "name": "svelte-i18n", "version": "1.0.2", "license": "MIT", "main": "dist/i18n.js", "module": "dist/i18n.mjs", "types": "src/index.d.ts", "description": "Internationalization library for Svelte", "author": "Christian Kaisermann ", "repository": "https://github.com/kaisermann", "keywords": [ "svelte", "i18n", "internationalization", "localization", "translation" ], "scripts": { "build": "microbundle --format=cjs,es --no-sourcemap", "start": "microbundle watch --format=cjs,es", "test": "jest --no-cache --verbose", "test:watch": "jest --no-cache --verbose --watchAll", "lint": "eslint \"src/**/*.js\"", "format": "prettier --loglevel silent --write \"src/**/*.js\" && eslint --fix \"src/**/*.js\"" }, "jest": { "verbose": true, "testURL": "http://localhost/", "transform": { "^.+\\.jsx?$": "babel-jest" }, "testRegex": "(/test/.*|\\.(test|spec))\\.js$", "moduleFileExtensions": [ "js" ], "coveragePathIgnorePatterns": [ "/node_modules/", "/test/", "/src/formatter.js" ], "coverageThreshold": { "global": { "branches": 90, "functions": 95, "lines": 95, "statements": 95 } }, "collectCoverage": true }, "devDependencies": { "@babel/core": "^7.4.4", "@babel/preset-env": "^7.4.4", "babel-core": "^7.0.0-bridge.0", "babel-jest": "^24.8.0", "eslint": "^5.16.0", "eslint-config-prettier": "^4.3.0", "eslint-config-standard": "^12.0.0", "eslint-plugin-import": "^2.17.2", "eslint-plugin-node": "^9.0.1", "eslint-plugin-prettier": "^3.1.0", "eslint-plugin-promise": "^4.1.1", "eslint-plugin-standard": "^4.0.0", "jest": "^24.8.0", "microbundle": "^0.11.0", "prettier": "^1.17.1", "svelte": "^3.4.1" }, "peerDependencies": { "svelte": "^3.4.1" }, "dependencies": { "deepmerge": "^3.2.0", "intl-messageformat": "^2.2.0", "micro-memoize": "^3.0.1", "object-resolve-path": "^1.1.1" } }