forked from nuxt-modules/i18n
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·67 lines (67 loc) · 1.6 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "nuxt-i18n",
"version": "4.0.0",
"description": "i18n for Nuxt",
"license": "MIT",
"contributors": [
{
"name": "Paul Gascou-Vaillancourt (@paulgv)"
}
],
"main": "src/index.js",
"repository": "https://github.com/nuxt-community/nuxt-i18n",
"homepage": "https://nuxt-community.github.io/nuxt-i18n/",
"bugs": {
"url": "https://nuxtjs.cmty.io/nuxt-community/nuxt-i18n/issues"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"lint": "eslint src test",
"test": "jest",
"release": "standard-version && git push --follow-tags && npm publish",
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs"
},
"eslintIgnore": [
"src/templates/*.*",
"src/plugins/*.*"
],
"files": [
"src"
],
"jest": {
"testEnvironment": "node",
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"collectCoverageFrom": [
"src",
"test"
]
},
"dependencies": {
"acorn": "^5.6.2",
"cookie": "^0.3.1",
"esm": "3.0.28",
"fs": "^0.0.1-security",
"vue-i18n": "^7.8.0",
"vue-i18n-extensions": "^0.1.0"
},
"devDependencies": {
"codecov": "^3.0.1",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-jest": "^21.15.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.1.0",
"eslint-plugin-vue": "^4.3.0",
"jest": "^22.3.0",
"jsdom": "^11.6.2",
"nuxt": "npm:nuxt-edge",
"standard-version": "^4.4.0",
"vuepress": "0.10.0"
}
}