-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.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
{
"name": "webpack-i18n-fallbacks",
"version": "0.5.1",
"description": "Merge i18n json files with fallbacks",
"repository": {
"type": "git",
"url": "https://github.com/factorialco/webpack-i18n-fallbacks"
},
"main": "lib",
"types": "./lib/index.d.ts",
"scripts": {
"prepare": "npm run-script build",
"lint": "eslint --ext .ts --cache src/",
"build": "npm run-script build:clean && rollup --config",
"build:clean": "rimraf lib",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"i18n",
"fallback"
],
"author": "Ferran Basora <[email protected]>",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/factorialco/webpack-i18n-fallbacks/issues"
},
"homepage": "https://github.com/factorialco/webpack-i18n-fallbacks#readme",
"dependencies": {
"@types/lodash": "^4.14.178",
"@types/node": "^17.0.12",
"@typescript-eslint/eslint-plugin": "5.9.1",
"@typescript-eslint/parser": "5.9.1",
"eslint": ">= 6",
"eslint-config-prettier": "8.3.0",
"lodash": "^4.17.21",
"prettier": "2.5.1",
"rollup": "2.63.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-typescript2": "0.31.1",
"rollup-plugin-dts": "4.1.0",
"typescript": ">= 2.7",
"webpack": "^5.0.0"
}
}