-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.59 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
{
"name": "@acciosolutions/webpack-awesome-i18n-plugin",
"version": "5.0.1",
"description": "Write ii18n translations in one file",
"main": "dist/cjs.js",
"dependencies": {},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-jest": "^24.5.0",
"babel-preset-env": "^1.7.0",
"cross-env": "^5.2.0",
"del-cli": "^1.1.0",
"eslint": "^5.15.3",
"eslint-config-webpack": "^1.2.5",
"eslint-plugin-import": "^2.16.0",
"husky": "^1.3.1",
"jest": "^24.5.0",
"lint-staged": "^8.1.5",
"webpack": "^5.27.0",
"webpack-cli": "^4.5.0"
},
"peerDependencies": {
"webpack": "^4.0.0"
},
"scripts": {
"build": "cross-env NODE_ENV=production babel src -d dist --ignore 'src/*.test.js'",
"dev": "cross-env babel src -d dist --ignore 'src/*.test.js' --watch",
"clean": "del-cli dist",
"lint": "eslint src",
"test": "jest",
"test:coverage": "jest --collectCoverageFrom='src/**/*.js' --coverage",
"prepublish": "yarn build"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/AccioSolutions/webpack-awesome-i18n-plugin.git"
},
"keywords": [
"webpack",
"plugin",
"i18n"
],
"author": {
"name": "Matheus Ale da Silva",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/AccioSolutions/webpack-awesome-i18n-plugin/issues"
},
"homepage": "https://github.com/AccioSolutions/webpack-awesome-i18n-plugin#readme"
}