generated from AllanOricil/js-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 1.66 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
{
"name": "xml2yaml-disassembler",
"version": "1.1.6",
"description": "A JavaScript package to disassemble then transform XML files into smaller YAML files.",
"author": "Matt Carvin",
"license": "ISC",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"umd:main": "dist/index.umd.js",
"types": "dist/typings/index.d.ts",
"engines": {
"node": ">=18",
"pnpm": ">=8"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "rollup -c",
"start": "node dist/index.cjs",
"test": "jest --coverage",
"release": "semantic-release",
"lint": "eslint .",
"format": "prettier --write \"**/*.{js,ts}\"",
"prepare": "husky install"
},
"lint-staged": {
"**/*": "prettier --write \"**/*.{js,ts}\" --ignore-unknown"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.2",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.11",
"@types/node": "^22.10.5",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^15.3.0",
"prettier": "3.2.4",
"rollup": "^4.9.6",
"ts-jest": "^29.1.2",
"typescript": "^5.7.2"
},
"dependencies": {
"tslib": "^2.6.2",
"xml-disassembler": "^1.3.6",
"yaml": "^2.4.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mcarvin8/xml2yaml-disassembler.git"
},
"bugs": {
"url": "https://github.com/mcarvin8/xml2yaml-disassembler/issues"
},
"keywords": [
"xml",
"yaml",
"transform",
"transformers",
"disassemble",
"disassembly",
"xml2yaml",
"yaml2xml"
]
}