-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 999 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
{
"name": "mini-i18n-webpack-plugin",
"version": "0.0.1",
"description": "Embed localization in the bundle",
"main": "index.js",
"scripts": {
"lint": "eslint *.js test/*.js && prettier --list-different *.js test/*.js",
"lint:fix": "eslint --fix *.js test/*.js && prettier --write *.js test/*.js",
"test": "mocha && rm -rf test/dist"
},
"author": "Alexander Cederblad <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/fishbrain/mini-i18n-webpack-plugin.git"
},
"homepage": "https://github.com/fishbrain/mini-i18n-webpack-plugin#readme",
"license": "ISC",
"files": [],
"peerDependencies": {
"webpack": "^5.24.0"
},
"devDependencies": {
"eslint": "^7.21.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"mocha": "^8.3.1",
"prettier": "^2.2.1"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all"
}
}