forked from daniel-sc/xml_normalize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.48 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
{
"name": "xml_normalize",
"version": "1.0.0",
"description": "Normalizes xml files. Options include sorting siblings, remove nodes, whitespace normalization and pretty print.",
"main": "dist/src/index.js",
"bin": {
"xml_normalize": "dist/src/index.js"
},
"types": "dist/src/xmlNormalize.d.ts",
"scripts": {
"start": "tsc && node dist/index.js --help",
"run-examples": "tsc && node dist/index.js -i examples/messages.xlf -o examples/messages2.xlf -s xliff.file[0].unit.id -r xliff.file[].unit[].notes -n",
"run-examples2": "tsc && node dist/index.js -i examples/messages.xlf -o examples/messages2.xlf -s note.somenotes.anote.id -r note.somenotes.anote[].dummy -d -n",
"test": "jest",
"test-coverage": "jest --coverage",
"build": "tsc"
},
"keywords": [
"xml",
"pretty",
"sort",
"normalize",
"clean"
],
"repository": {
"type": "git",
"url": "https://github.com/daniel-sc/xml_normalize.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"author": "[email protected]",
"license": "ISC",
"dependencies": {
"commander": "~7.1.0",
"xmldoc": "~1.1.2"
},
"devDependencies": {
"@types/commander": "~2.12.2",
"@types/jest": "~26.0.20",
"@types/xml2js": "~0.4.8",
"@types/xmldoc": "~1.1.5",
"jest": "~26.6.3",
"ts-jest": "~26.5.3",
"ts-node": "^9.1.1",
"tslint": "~6.1.3",
"typescript": "~4.2.3"
},
"files": [
"dist/**/*"
]
}