generated from AllanOricil/js-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.65 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
{
"name": "xml-disassembler",
"version": "1.3.11",
"description": "A JavaScript package to disassemble XML files into smaller, more manageable files and reassemble them when needed.",
"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.14",
"@types/node": "^22.10.5",
"eslint": "^8.56.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.2.5",
"typescript": "^5.7.2"
},
"dependencies": {
"fast-xml-parser": "^4.5.1",
"ignore": "^5.3.1",
"log4js": "^6.9.1",
"tslib": "^2.6.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mcarvin8/xml-disassembler.git"
},
"bugs": {
"url": "https://github.com/mcarvin8/xml-disassembler/issues"
},
"keywords": [
"xml",
"transform",
"transformers",
"disassemble",
"disassembly"
]
}