2018-07-26 03:40:38 +02:00
|
|
|
{
|
|
|
|
"name": "svelte-i18n",
|
2019-06-19 15:42:04 +02:00
|
|
|
"version": "1.1.1-beta",
|
|
|
|
"main": "dist/i18n.cjs.js",
|
2019-06-19 15:41:57 +02:00
|
|
|
"module": "src/index.js",
|
2019-06-12 03:51:01 +02:00
|
|
|
"license": "MIT",
|
2018-08-09 16:23:01 +02:00
|
|
|
"description": "Internationalization library for Svelte",
|
2018-07-26 03:40:38 +02:00
|
|
|
"author": "Christian Kaisermann <christian@kaisermann.me>",
|
2018-08-07 22:44:05 +02:00
|
|
|
"repository": "https://github.com/kaisermann",
|
2018-08-09 16:23:01 +02:00
|
|
|
"keywords": [
|
|
|
|
"svelte",
|
|
|
|
"i18n",
|
|
|
|
"internationalization",
|
|
|
|
"localization",
|
|
|
|
"translation"
|
|
|
|
],
|
2018-07-26 03:40:38 +02:00
|
|
|
"scripts": {
|
2019-06-12 05:04:34 +02:00
|
|
|
"build": "rollup -c",
|
|
|
|
"dev": "rollup -c -w",
|
|
|
|
"pretest": "npm run build",
|
2018-08-07 22:44:05 +02:00
|
|
|
"test": "jest --no-cache --verbose",
|
|
|
|
"test:watch": "jest --no-cache --verbose --watchAll",
|
2018-08-09 00:47:16 +02:00
|
|
|
"lint": "eslint \"src/**/*.js\"",
|
2019-06-06 23:05:30 +02:00
|
|
|
"format": "prettier --loglevel silent --write \"src/**/*.js\" && eslint --fix \"src/**/*.js\"",
|
|
|
|
"prepublishOnly": "npm run format && npm run test && npm run build"
|
2018-07-26 03:40:38 +02:00
|
|
|
},
|
2019-06-08 00:19:09 +02:00
|
|
|
"files": [
|
2019-06-19 22:20:26 +02:00
|
|
|
"dist/",
|
|
|
|
"src/"
|
2019-06-08 00:19:09 +02:00
|
|
|
],
|
2018-08-08 07:17:09 +02:00
|
|
|
"jest": {
|
|
|
|
"verbose": true,
|
|
|
|
"testURL": "http://localhost/",
|
|
|
|
"transform": {
|
|
|
|
"^.+\\.jsx?$": "babel-jest"
|
|
|
|
},
|
|
|
|
"testRegex": "(/test/.*|\\.(test|spec))\\.js$",
|
|
|
|
"moduleFileExtensions": [
|
|
|
|
"js"
|
|
|
|
],
|
|
|
|
"coveragePathIgnorePatterns": [
|
|
|
|
"/node_modules/",
|
2019-06-19 15:42:04 +02:00
|
|
|
"/test/"
|
2018-08-08 07:17:09 +02:00
|
|
|
],
|
|
|
|
"coverageThreshold": {
|
|
|
|
"global": {
|
|
|
|
"branches": 90,
|
|
|
|
"functions": 95,
|
|
|
|
"lines": 95,
|
|
|
|
"statements": 95
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"collectCoverage": true
|
|
|
|
},
|
2018-07-26 03:40:38 +02:00
|
|
|
"devDependencies": {
|
2019-06-12 03:51:01 +02:00
|
|
|
"@babel/core": "^7.4.5",
|
|
|
|
"@babel/preset-env": "^7.4.5",
|
2018-08-08 07:17:09 +02:00
|
|
|
"babel-core": "^7.0.0-bridge.0",
|
2019-05-19 03:59:26 +02:00
|
|
|
"babel-jest": "^24.8.0",
|
|
|
|
"eslint": "^5.16.0",
|
|
|
|
"eslint-config-prettier": "^4.3.0",
|
|
|
|
"eslint-config-standard": "^12.0.0",
|
2019-06-12 03:51:01 +02:00
|
|
|
"eslint-plugin-import": "^2.17.3",
|
|
|
|
"eslint-plugin-node": "^9.1.0",
|
2019-05-19 03:59:26 +02:00
|
|
|
"eslint-plugin-prettier": "^3.1.0",
|
|
|
|
"eslint-plugin-promise": "^4.1.1",
|
|
|
|
"eslint-plugin-standard": "^4.0.0",
|
|
|
|
"jest": "^24.8.0",
|
2019-06-12 03:51:01 +02:00
|
|
|
"prettier": "^1.18.2",
|
2019-06-12 05:04:34 +02:00
|
|
|
"rollup": "^1.15.1",
|
|
|
|
"rollup-plugin-auto-external": "^2.0.0",
|
|
|
|
"rollup-plugin-commonjs": "^10.0.0",
|
|
|
|
"rollup-plugin-node-resolve": "^5.0.1",
|
|
|
|
"rollup-plugin-terser": "^5.0.0",
|
2019-06-12 03:51:01 +02:00
|
|
|
"svelte": "^3.5.1"
|
2018-08-08 07:17:09 +02:00
|
|
|
},
|
|
|
|
"peerDependencies": {
|
2019-06-12 03:51:01 +02:00
|
|
|
"svelte": "^3.5.1"
|
2018-07-27 04:24:17 +02:00
|
|
|
},
|
|
|
|
"dependencies": {
|
2019-06-12 03:51:01 +02:00
|
|
|
"intl-messageformat": "^4.0.1",
|
|
|
|
"micro-memoize": "^4.0.7",
|
2018-07-31 00:57:05 +02:00
|
|
|
"object-resolve-path": "^1.1.1"
|
2018-07-26 03:40:38 +02:00
|
|
|
}
|
|
|
|
}
|