mirror of
https://github.com/cupcakearmy/svelte-i18n.git
synced 2024-11-16 18:10:43 +01:00
71 lines
1.9 KiB
JSON
71 lines
1.9 KiB
JSON
{
|
|
"name": "svelte-i18n",
|
|
"version": "0.0.1",
|
|
"license": "MIT",
|
|
"main": "dist/i18n.js",
|
|
"types": "src/index.d.ts",
|
|
"description": "",
|
|
"author": "Christian Kaisermann <christian@kaisermann.me>",
|
|
"repository": "https://github.com/kaisermann",
|
|
"keywords": [],
|
|
"scripts": {
|
|
"build": "microbundle --name='svelte-i18n'",
|
|
"start": "microbundle watch --name='svelte-i18n'",
|
|
"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"
|
|
},
|
|
"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.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",
|
|
"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",
|
|
"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": {
|
|
"deepmerge": "^2.1.1",
|
|
"object-resolve-path": "^1.1.1"
|
|
}
|
|
}
|