-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.78 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
{
"name": "gettext-l10n",
"license": "MIT",
"author": {
"name": "ArrayIterator",
"email": "[email protected]",
"url": "https://www.arrayiterator.com"
},
"keywords": [
"gettext",
"l10n",
"translation",
"localization",
"po",
"mo"
],
"version": "1.0.0",
"bugs": {
"url": "https://github.com/ArrayIterator/gettext-l10n/issues"
},
"scripts": {
"clean:dist": "rm -rf dist",
"clean:module": "rm -rf build",
"clean:types": "rm -rf @types",
"clean:all": "npm run clean:module && npm run clean:dist && npm run clean:types",
"build:module": "tsc --outDir build",
"build:types": "tsc --declaration --declarationDir @types",
"build:dist": "webpack --mode=production --config webpack.config.js",
"lint": "eslint",
"jest": "jest",
"test": "npm run lint && npm run jest",
"build": "npm run test && npm run build:module && npm run build:dist && npm run build:types"
},
"jest": {
"preset": "ts-jest",
"testMatch": [
"**/__tests__/**/*.test.ts"
]
},
"engines": {
"node": ">= 20"
},
"main": "build/gettextL10n.js",
"types": "@types/**/*.d.ts",
"devDependencies": {
"@types/jest": "^29.5.13",
"@typescript-eslint/eslint-plugin": "^8.9.0",
"@typescript-eslint/parser": "^8.9.0",
"eslint": "^9.12.0",
"eslint-plugin-import-newlines": "^1.4.0",
"eslint-plugin-jsdoc": "^50.4.1",
"jest": "^29.7.0",
"terser-webpack-plugin": "^5.3.10",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"typescript": "^5.6.3",
"webpack": "^5.95.0",
"webpack-cli": "^5.1.4"
}
}