-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
89 lines (89 loc) · 2.79 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "xml-class-transformer",
"version": "2.3.0",
"description": "Fluently parse XML into beautiful JS/TS classes and serialize them. GoLang's encoding/xml alternative for JS/TS world.",
"cdn": "dist/index.umd.js",
"main": "dist/index.js",
"types": "types/index.d.ts",
"unpkg": "dist/index.umd.js",
"module": "dist/index.esm.js",
"jsdelivr": "dist/index.umd.js",
"umd:main": "dist/index.umd.js",
"exports": {
".": [
{
"import": {
"types": "./types/index.d.ts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./types/index.d.ts",
"default": "./dist/index.cjs"
},
"default": {
"types": "./types/index.d.ts",
"default": "./dist/index.js"
}
},
"./dist/index.js"
]
},
"homepage": "https://github.com/Edgar-P-Yan/xml-class-transformer#readme",
"scripts": {
"doc": "typedoc src/index.ts",
"test": "jest",
"lint": "eslint \"*/**/*.{ts,js,json}\"",
"lint:fix": "eslint \"*/**/*.{ts,js,json}\" --fix",
"build": "rollup --config ./rollup.config.mjs",
"prepublishOnly": "npm run build && npm run lint && npm run test",
"build-all-and-test": "npm run doc && npm run lint && npm run test && npm run build",
"version": "npm run build-all-and-test && git add .",
"version-major": "npm version major -m \"chore: bump version to %s\"",
"version-minor": "npm version minor -m \"chore: bump version to %s\"",
"version-premajor": "npm version premajor --preid alpha -m \"chore: bump version to %s\"",
"version-prerelease": "npm version prerelease --preid alpha -m \"chore: bump version to %s\"",
"publish-prerelease": "npm publish --tag=alpha"
},
"dependencies": {
"xml-js-v2": "^2.2.1"
},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/eslint": "^8.4.10",
"@types/jest": "^29.2.4",
"@types/prettier": "^2.7.2",
"@typescript-eslint/eslint-plugin": "^5.47.0",
"@typescript-eslint/parser": "^5.47.0",
"chai": "^4.3.7",
"eslint": "^8.30.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.3.1",
"prettier": "^2.8.1",
"rollup": "^2.79.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.34.1",
"ts-jest": "^29.0.3",
"ts-jest-resolver": "^2.0.0",
"ts-node": "^10.9.2",
"typedoc": "^0.23.23",
"typedoc-plugin-markdown": "^3.14.0",
"typescript": "^4.9.4"
},
"files": [
"dist/",
"types/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Edgar-P-Yan/xml-class-transformer.git"
},
"keywords": [],
"author": {
"name": "Edgar Pogosyan"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Edgar-P-Yan/xml-class-transformer/issues"
}
}