-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
50 lines (50 loc) · 1.05 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
{
"name": "xliff-simple-merge",
"version": "1.3.0",
"description": "Merges XLIFF files",
"main": "dist/src/index.js",
"bin": {
"xliff-simple-merge": "dist/src/index.js"
},
"scripts": {
"test": "jest",
"test-coverage": "jest --coverage",
"build": "tsc",
"prepack": "tsc"
},
"keywords": [
"xliff",
"angular",
"i18n"
],
"repository": {
"type": "git",
"url": "https://github.com/daniel-sc/xliff-simple-merge.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"commander": "~8.3.0",
"js-levenshtein": "~1.1.6",
"xmldoc": "~1.1.2"
},
"devDependencies": {
"@types/jest": "~27.5.2",
"@types/js-levenshtein": "~1.1.1",
"@types/xml2js": "~0.4.9",
"@types/xmldoc": "~1.1.6",
"jest": "~27.5.1",
"ts-jest": "~27.1.3",
"ts-node": "^10.4.0",
"tslint": "~6.1.3",
"typescript": "~4.5.4"
},
"author": "daniel-schreiber@gmx.de",
"license": "MIT",
"files": [
"dist/src/**/*",
"dist/src/*"
]
}