-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.06 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1.06 KB
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
{
"name": "@yellowtree/webpack-plugin-xlf",
"version": "1.0.1",
"description": "Generate XLF-files from JSON using webpack",
"main": "dist/index.js",
"license": "MIT",
"private": false,
"devDependencies": {
"@rollup/plugin-commonjs": "^21.0.1",
"@rollup/plugin-node-resolve": "^13.0.6",
"@rollup/plugin-typescript": "^8.3.0",
"@types/glob": "^7.2.0",
"@types/lodash": "^4.14.180",
"@types/node": "^17.0.21",
"@types/webpack": "^5.28.0",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.4.1",
"rollup": "^2.58.0",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.6.2"
},
"dependencies": {
"lodash": "^4.17.21",
"xmlbuilder2": "^3.0.2"
},
"scripts": {
"build": "rm -rf dist && rollup --config",
"lint": "tsc --noEmit --project tsconfig.json && eslint ."
}
}