-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.42 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.42 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
37
38
39
40
41
42
43
44
45
46
{
"name": "xliff-validation",
"version": "1.2.0",
"description": "XLIFF validation tool based on TypesXLIFF package",
"keywords": [
"XLIFF",
"validation",
"TypesXLIFF"
],
"homepage": "https://github.com/maxprograms-com/xliff-validation#readme",
"bugs": {
"url": "https://github.com/maxprograms-com/xliff-validation/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maxprograms-com/xliff-validation.git"
},
"license": "EPL-1.0",
"author": {
"name": "Rodolfo M. Raya",
"url": "https://maxprograms.com",
"email": "rmraya@maxprograms.com"
},
"type": "module",
"main": "./dist/xliffvalidator.js",
"scripts": {
"clean": "node -e \"require('node:fs').rmSync('dist', { recursive: true, force: true })\"",
"build": "npm run clean && tsc && node dist/copy-assets.js && node -e \"const fs=require('node:fs'); const p='dist/xliffvalidator.js'; if (fs.existsSync(p)) { try { fs.chmodSync(p, 0o755); } catch {} }\"",
"prepack": "npm run build",
"postinstall": "node -e \"const fs=require('node:fs'); const p='dist/xliffvalidator.js'; if (fs.existsSync(p)) { try { fs.chmodSync(p, 0o755); } catch {} }\""
},
"files": [
"dist"
],
"devDependencies": {
"@types/node": "^24.12.4",
"typescript": "^6.0.3"
},
"dependencies": {
"typesxliff": "^1.0.0",
"typesxml": "^2.1.0"
},
"bin": {
"xliffvalidator": "dist/xliffvalidator.js"
}
}