forked from zainulbr/i18n-webpack-plugin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
95 lines (95 loc) · 2.28 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
{
"name": "@valimail/i18n-webpack-plugin",
"version": "2.0.2",
"author": "Matt Schneider",
"description": "Rewrite original embed localization into your bundle with support webpack 5",
"main": "dist/cjs.js",
"files": [
"dist"
],
"keywords": [
"i18n",
"webpack-plugin",
"i18n-webpack-plugin",
"webpack",
"webpack5",
"translation",
"internationalization"
],
"license": "MIT",
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"scripts": {
"start": "npm run build -- -w",
"build": "cross-env NODE_ENV=production babel src -d dist --ignore 'src/**/*.test.js'",
"clean": "del-cli dist",
"clean:dist": "del-cli dist",
"lint": "eslint --cache src test",
"lint-staged": "lint-staged",
"prebuild": "npm run clean",
"prepublish": "npm run build",
"release": "standard-version",
"serve:dev": "nodemon $2 --exec babel-node",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --collectCoverageFrom='src/**/*.js' --coverage",
"webpack-defaults": "webpack-defaults"
},
"devDependencies": {
"@babel/cli": "^7.24.8",
"@babel/core": "^7.25.2",
"@babel/preset-env": "^7.25.3",
"babel-jest": "^29.7.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"cross-env": "^7.0.2",
"del-cli": "^5.1.0",
"eslint": "^8.56.0",
"eslint-config-webpack": "^1.2.5",
"eslint-plugin-import": "^2.29.1",
"jest": "^27.5.1",
"lint-staged": "^15.2.7",
"nsp": "^3.2.1",
"pre-commit": "^1.2.2",
"standard-version": "^9.5.0",
"webpack": "^5.93.0"
},
"peerDependencies": {
"webpack": "*"
},
"jest": {
"roots": [
"./"
],
"moduleDirectories": [
"node_modules",
"src"
]
},
"engines": {
"node": "20.x"
},
"homepage": "https://webpack.js.org",
"repository": {
"type": "git",
"url": "git+https://github.com/ValiMail/i18n-webpack-plugin.git"
},
"bugs": {
"url": "https://github.com/ValiMail/i18n-webpack-plugin/issues"
},
"pre-commit": "lint-staged",
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"directories": {
"example": "example",
"test": "test"
},
"resolutions": {
"mem": "^4.0.0"
}
}