svelte-i18n/package.json
Christian Kaisermann debe771182 Update dependencies
2019-06-11 22:51:01 -03:00

83 lines
2.1 KiB
JSON

{
"name": "svelte-i18n",
"version": "1.0.4",
"main": "dist/i18n.js",
"module": "dist/i18n.mjs",
"types": "src/index.d.ts",
"source": "src/index.js",
"license": "MIT",
"description": "Internationalization library for Svelte",
"author": "Christian Kaisermann <christian@kaisermann.me>",
"repository": "https://github.com/kaisermann",
"keywords": [
"svelte",
"i18n",
"internationalization",
"localization",
"translation"
],
"scripts": {
"build": "microbundle --format=cjs,es",
"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\"",
"prepublishOnly": "npm run format && npm run test && npm run build"
},
"files": [
"./dist"
],
"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.5",
"@babel/preset-env": "^7.4.5",
"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.3",
"eslint-plugin-node": "^9.1.0",
"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.18.2",
"svelte": "^3.5.1"
},
"peerDependencies": {
"svelte": "^3.5.1"
},
"dependencies": {
"intl-messageformat": "^4.0.1",
"micro-memoize": "^4.0.7",
"object-resolve-path": "^1.1.1"
}
}