forked from nuxt-modules/i18n
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·66 lines (66 loc) · 1.63 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
{
"name": "nuxt-i18n",
"version": "5.4.3",
"description": "i18n for Nuxt",
"license": "MIT",
"contributors": [
{
"name": "Paul Gascou-Vaillancourt (@paulgv)"
}
],
"main": "src/index.js",
"types": "types/index.d.ts",
"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",
"types/index.d.ts"
],
"jest": {
"testEnvironment": "node",
"coverageDirectory": "./coverage/",
"collectCoverage": true
},
"dependencies": {
"@kazupon/vue-i18n-loader": "^0.3.0",
"acorn": "^6.0.2",
"acorn-walk": "^6.1.0",
"cookie": "^0.3.1",
"js-cookie": "^2.2.0",
"vue-i18n": "^8.2.0",
"vue-i18n-extensions": "^0.2.0"
},
"devDependencies": {
"codecov": "^3.1.0",
"eslint": "^5.7.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^21.25.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^4.3.0",
"jest": "^23.6.0",
"jsdom": "^12.2.0",
"nuxt": "^2.2.0",
"standard-version": "^4.4.0",
"vuepress": "^0.14.4"
}
}