-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
40 lines (40 loc) · 939 Bytes
/
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
{
"name": "nuxt-i18n-module",
"version": "0.4.0",
"license": "GPL-3.0",
"main": "src/index.js",
"repository": "https://github.com/njam/nuxt-i18n-module",
"homepage": "https://github.com/njam/nuxt-i18n-module",
"dependencies": {
"path-to-regexp": "^2",
"vue-i18n": "^8"
},
"devDependencies": {
"eslint": "^5",
"eslint-config-standard": "^11",
"eslint-plugin-import": "^2",
"eslint-plugin-node": "^6",
"eslint-plugin-promise": "^3",
"eslint-plugin-standard": "^3",
"eslint-plugin-vue": "^4",
"jest": "^23",
"nuxt": "^2",
"request": "^2",
"request-promise-native": "^1"
},
"jest": {
"testEnvironment": "node",
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"collectCoverageFrom": [
"src/**"
],
"coveragePathIgnorePatterns": [
"/templates/"
]
},
"scripts": {
"pretest": "eslint .",
"test": "jest"
}
}