-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.59 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
{
"name": "@alxcube/xml-mapper",
"version": "1.0.1",
"description": "Library designed for mapping XML documents to JavaScript objects using a declarative builder with XPath expressions.",
"keywords": [
"xml",
"xml mapper",
"xml parser",
"xpath"
],
"type": "module",
"main": "./dist/xml-mapper.umd.cjs",
"module": "./dist/xml-mapper.js",
"types": "./dist/xml-mapper.d.ts",
"exports": {
".": {
"import": "./dist/xml-mapper.js",
"require": "./dist/xml-mapper.umd.cjs"
}
},
"scripts": {
"build": "tsc && vite build",
"test": "vitest --typecheck --run",
"test:code": "vitest --run",
"test:types": "vitest --typecheck.only --run",
"lint": "eslint ./src ./spec --ext .ts && npm run prettier",
"prettier": "prettier --write 'src/**/*.ts' && prettier --write 'spec/**/*.ts'"
},
"author": "Alexander Alexandrov <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/alxcube/xml-mapper.git"
},
"license": "MIT",
"files": [
"dist"
],
"devDependencies": {
"@types/node": "^20.11.19",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@vitest/browser": "^1.3.1",
"@xmldom/xmldom": "^0.8.10",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.5",
"typescript": "^5.2.2",
"vite": "^5.1.4",
"vite-plugin-banner": "^0.7.1",
"vite-plugin-dts": "^3.7.2",
"vitest": "^1.3.1",
"webdriverio": "^8.32.3"
},
"dependencies": {
"xpath": "^0.0.34"
}
}