forked from nuxt-modules/i18n
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
121 lines (121 loc) · 3.22 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "nuxt-i18n",
"version": "6.13.0-beta.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",
"dev:basic:generate": "nuxt generate -c ./test/fixture/basic/nuxt.config.js",
"coverage": "codecov",
"lint": "eslint --ext .js,.vue,.ts src test types",
"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": "release-it",
"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"
],
"release-it": {
"git": {
"commitMessage": "chore: release ${version}",
"tagName": "v${version}"
},
"npm": {
"publish": false
},
"github": {
"release": true,
"releaseName": "${version}",
"releaseNotes": "echo \"${changelog}\" | sed 1,2d"
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": "conventionalcommits",
"infile": "CHANGELOG.md"
}
}
},
"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",
"@intlify/vue-i18n-extensions": "^1.0.1",
"@intlify/vue-i18n-loader": "^1.0.0",
"cookie": "^0.4.0",
"is-https": "^2.0.0",
"js-cookie": "^2.2.1",
"vue-i18n": "^8.18.1"
},
"devDependencies": {
"@babel/core": "7.10.2",
"@babel/preset-env": "7.10.2",
"@babel/runtime": "7.10.2",
"@nuxt/types": "0.7.9",
"@nuxtjs/eslint-config-typescript": "2.0.0",
"@nuxtjs/module-test-utils": "1.6.1",
"@release-it/conventional-changelog": "1.1.4",
"@types/argparse": "1.0.38",
"@types/jest": "26.0.0",
"@types/jest-dev-server": "4.2.0",
"argparse": "1.0.10",
"babel-core": "7.0.0-bridge.0",
"babel-eslint": "10.1.0",
"codecov": "3.7.0",
"core-js": "3.6.5",
"eslint": "6.8.0",
"finalhandler": "1.1.2",
"jest": "26.0.1",
"jest-dev-server": "4.4.0",
"jsdom": "16.2.2",
"messageformat": "2.3.0",
"nuxt": "2.12.2",
"playwright-chromium": "1.1.1",
"release-it": "13.6.3",
"serve-static": "1.14.1",
"typescript": "3.9.5",
"vuepress": "1.5.2"
}
}