forked from nuxt-modules/i18n
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 2.85 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "nuxt-i18n",
"version": "6.4.0",
"description": "i18n for Nuxt",
"license": "MIT",
"contributors": [
{
"name": "Paul Gascou-Vaillancourt (@paulgv)"
},
{
"name": "Rafal Chlodnicki (@rchl)"
}
],
"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/fixture/basic/nuxt.config.js",
"coverage": "codecov",
"lint": "eslint --ext .js,.vue src test",
"test": "yarn test:types && yarn test:unit && yarn test:e2e-ssr && yarn test:e2e-browser",
"test:e2e-ssr": "jest test/module.test",
"test:e2e-browser": "jest test/browser.test",
"test:unit": "jest test/unit.test",
"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/options.js",
"test/fixture/typescript/**/*",
"**/*.d.ts"
],
"files": [
"src",
"types/*.d.ts"
],
"jest": {
"testEnvironment": "node",
"setupFilesAfterEnv": [
"./test/setup"
],
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.js",
"!src/templates/*.js",
"!src/plugins/*.js",
"!src/helpers/utils.js",
"!src/helpers/constants.js"
]
},
"dependencies": {
"@babel/parser": "^7.5.5",
"@babel/traverse": "^7.5.5",
"@kazupon/vue-i18n-loader": "^0.4.0",
"cookie": "^0.4.0",
"is-https": "^1.0.0",
"js-cookie": "^2.2.0",
"vue-i18n": "^8.12.0",
"vue-i18n-extensions": "^0.2.1"
},
"devDependencies": {
"@babel/core": "7.7.4",
"@babel/plugin-syntax-dynamic-import": "7.7.4",
"@babel/preset-env": "7.7.4",
"@babel/runtime": "7.7.4",
"@nuxt/types": "0.3.4",
"@nuxtjs/module-test-utils": "1.5.0",
"@types/jest": "24.0.23",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.0.3",
"babel-plugin-dynamic-import-node": "2.3.0",
"chromedriver": "78.0.1",
"codecov": "3.6.1",
"eslint": "6.7.1",
"eslint-config-standard": "14.1.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-jest": "23.0.5",
"eslint-plugin-node": "10.0.0",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.0.1",
"eslint-plugin-vue": "6.0.1",
"geckodriver": "1.19.1",
"jest": "24.9.0",
"jsdom": "15.2.1",
"nuxt": "2.10.2",
"puppeteer-core": "2.0.0",
"selenium-webdriver": "4.0.0-alpha.5",
"standard-version": "7.0.1",
"tib": "0.7.4",
"typescript": "3.7.2",
"vuepress": "1.2.0"
}
}