forked from nuxt-modules/i18n
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.91 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
68
69
70
71
72
73
{
"name": "nuxt-i18n",
"version": "5.12.8",
"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": {
"dev:basic": "nuxt -c ./test/fixtures/basic/nuxt.config.js",
"lint": "eslint src test",
"test": "yarn test:fixtures && yarn test:types",
"test:fixtures": "jest test/fixtures",
"test:types": "tsc -p types/test",
"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/*.d.ts"
],
"jest": {
"testEnvironment": "node",
"coverageDirectory": "./coverage/",
"collectCoverage": true
},
"dependencies": {
"@kazupon/vue-i18n-loader": "^0.3.0",
"acorn": "^6.1.1",
"acorn-dynamic-import": "^4.0.0",
"acorn-walk": "^6.1.1",
"cookie": "^0.4.0",
"is-https": "^1.0.0",
"js-cookie": "^2.2.0",
"vue-i18n": "^8.11.2",
"vue-i18n-extensions": "^0.2.1"
},
"devDependencies": {
"@babel/runtime": "7.5.4",
"codecov": "3.5.0",
"eslint": "6.0.1",
"eslint-config-standard": "13.0.1",
"eslint-plugin-import": "2.18.0",
"eslint-plugin-jest": "22.8.0",
"eslint-plugin-node": "9.1.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.0.0",
"eslint-plugin-vue": "5.2.3",
"jest": "24.8.0",
"jsdom": "15.1.1",
"nuxt": "2.8.1",
"standard-version": "6.0.1",
"typescript": "3.5.3",
"vuepress": "1.0.2"
}
}