-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
88 lines (88 loc) · 1.99 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
{
"name": "i18next-scanner-webpack",
"version": "0.9.1",
"description": "Simple i18next-scanner webpack plugin",
"main": "index.js",
"scripts": {
"test": "jest --runInBand",
"test:coverage": "cross-env NODE_ENV=test jest --coverage",
"test:watch": "cross-env NODE_ENV=test jest --watchAll"
},
"keywords": [],
"author": "Philip Stapelfeldt <phil@capshake.com>",
"license": "MIT",
"dependencies": {
"i18next-parser": "^5.3.0",
"vinyl-fs": "^3.0.3"
},
"babel": {
"presets": [
"@babel/env"
],
"plugins": [
[
"@babel/transform-runtime",
{
"regenerator": true
}
]
]
},
"jest": {
"coverageThreshold": {
"global": {
"branches": 95,
"functions": 60,
"lines": 75,
"statements": -10
}
},
"bail": true,
"verbose": true,
"testURL": "http://localhost/",
"collectCoverageFrom": [
"index.js",
"!**/node_modules/**",
"!**/coverage/**",
"!**/vendor/**"
],
"coverageDirectory": "./coverage"
},
"prettier": {
"useTabs": false,
"singleQuote": true,
"tabWidth": 2,
"printWidth": 120,
"trailingComma": "none"
},
"husky": {
"hooks": {
"pre-commit": "jest --runInBand --lastCommit --coverage && lint-staged"
}
},
"lint-staged": {
"src/**/*.{js,vue,scss}": [
"prettier --write",
"git add"
]
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/runtime": "^7.17.9",
"babel-jest": "^27.5.1",
"jest": "^27.5.1",
"regenerator-runtime": "^0.13.9",
"rimraf": "^3.0.2",
"webpack": "^5.72.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ph1p/i18next-scanner-webpack.git"
},
"bugs": {
"url": "https://github.com/ph1p/i18next-scanner-webpack/issues"
},
"homepage": "https://github.com/ph1p/i18next-scanner-webpack#readme"
}