-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.03 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
63
64
65
66
67
68
69
70
71
72
73
{
"name": "gettext-l10n",
"license": "MIT",
"author": {
"name": "ArrayIterator",
"email": "me@arrayiterator.com",
"url": "https://www.arrayiterator.com"
},
"keywords": [
"gettext",
"l10n",
"translation",
"localization",
"po",
"mo"
],
"repository": {
"type": "git",
"url": "https://github.com/ArrayIterator/gettext-l10n.git"
},
"version": "1.0.0",
"bugs": {
"url": "https://github.com/ArrayIterator/gettext-l10n/issues"
},
"scripts": {
"clean:dist": "rm -rf dist",
"clean:module": "find ./src -type f -name '*.js' -exec rm -f {} \\; && rm -f ./index.js",
"clean:all": "npm run clean:module && npm run clean:dist",
"build:module": "tsc --outDir ./",
"build:dist": "webpack --mode=production --config webpack.config.js",
"lint": "eslint",
"jest": "jest",
"test": "npm run lint && npm run jest",
"build": "npm run clean:all && npm run test && npm run build:module && npm run build:dist"
},
"files": [
"src/**/*",
"index.ts",
"index.js",
"package.json",
"!**/__tests__",
"examples",
"README.md",
"LICENSE"
],
"jest": {
"preset": "ts-jest",
"testMatch": [
"**/__tests__/**/*.test.ts"
]
},
"engines": {
"node": ">= 20"
},
"main": "index.js",
"types": "@types/**/*.d.ts",
"devDependencies": {
"@types/jest": "^29.5.13",
"@types/node": "^22.10.2",
"@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"
}
}