svelte-i18n/package.json

78 lines
2.1 KiB
JSON
Raw Normal View History

2018-07-26 03:40:38 +02:00
{
"name": "svelte-i18n",
2018-08-12 05:10:40 +02:00
"version": "0.0.4",
2018-08-07 22:44:05 +02:00
"license": "MIT",
"main": "dist/i18n.js",
2018-08-09 16:23:01 +02:00
"module": "dist/i18n.m.js",
2018-08-07 22:44:05 +02:00
"types": "src/index.d.ts",
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": {
2018-08-09 16:23:01 +02:00
"build": "microbundle --format=cjs,es",
"start": "microbundle watch --format=cjs,es",
2018-08-07 22:44:05 +02:00
"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"
2018-07-26 03:40:38 +02:00
},
"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
},
2018-07-26 03:40:38 +02:00
"devDependencies": {
"@babel/core": "^7.0.0-beta.56",
"@babel/preset-env": "^7.0.0-beta.56",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^23.4.2",
"eslint": "^5.3.0",
2018-08-07 22:44:05 +02:00
"eslint-config-prettier": "^2.9.0",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-promise": "^3.8.0",
2018-08-07 22:44:05 +02:00
"eslint-plugin-standard": "^3.1.0",
"jest": "^23.4.2",
"microbundle": "^0.6.0",
"prettier": "^1.14.1",
"svelte": "^2.9.11"
},
"peerDependencies": {
"svelte": "^2.9.11"
},
"dependencies": {
2018-07-31 00:57:05 +02:00
"deepmerge": "^2.1.1",
"object-resolve-path": "^1.1.1"
2018-07-26 03:40:38 +02:00
}
}