-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
99 lines (99 loc) · 3.08 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
90
91
92
93
94
95
96
97
98
99
{
"name": "xml-utils",
"version": "1.10.1",
"description": "Parse XML without Blowing Up Your Bundle Size",
"main": "index.js",
"module": "index.mjs",
"types": "index.d.ts",
"exports": {
".": {
"require": "./index.js",
"import": "./index.mjs"
},
"./index": {
"require": "./index.js",
"import": "./index.mjs"
},
"./index.js": "./index.js",
"./index.mjs": "./index.mjs",
"./find-tag-by-name": "./find-tag-by-name.js",
"./find-tag-by-name.js": "./find-tag-by-name.js",
"./find-tag-by-name.mjs": "./find-tag-by-name.mjs",
"./find-tag-by-path": "./find-tag-by-path.js",
"./find-tag-by-path.js": "./find-tag-by-path.js",
"./find-tag-by-path.mjs": "./find-tag-by-path.mjs",
"./find-tags-by-name": "./find-tags-by-name.js",
"./find-tags-by-name.js": "./find-tags-by-name.js",
"./find-tags-by-name.mjs": "./find-tags-by-name.mjs",
"./find-tags-by-path": "./find-tags-by-path.js",
"./find-tags-by-path.js": "./find-tags-by-path.js",
"./find-tags-by-path.mjs": "./find-tags-by-path.mjs",
"./get-attribute": "./get-attribute.js",
"./get-attribute.js": "./get-attribute.js",
"./get-attribute.mjs": "./get-attribute.mjs",
"./remove-comments": "./remove-comments.js",
"./remove-comments.js": "./remove-comments.js",
"./remove-comments.mjs": "./remove-comments.mjs",
"./remove-tags-by-name": "./remove-tags-by-name",
"./remove-tags-by-name.js": "./remove-tags-by-name.js",
"./remove-tags-by-name.mjs": "./remove-tags-by-name.mjs"
},
"files": [
"index.d.ts",
"index.js",
"index.mjs",
"count-substring.js",
"find-tag-by-name.js",
"find-tag-by-path.js",
"find-tags-by-name.js",
"find-tags-by-path.js",
"get-attribute.js",
"index-of-match.js",
"index-of-match-end.js",
"remove-comments.js",
"remove-tags-by-name.js",
"count-substring.mjs",
"find-tag-by-name.mjs",
"find-tag-by-path.mjs",
"find-tags-by-name.mjs",
"find-tags-by-path.mjs",
"get-attribute.mjs",
"index-of-match.mjs",
"index-of-match-end.mjs",
"remove-comments.mjs",
"remove-tags-by-name.mjs"
],
"scripts": {
"f": "npm run format",
"format": "npx prettier --arrow-parens=avoid --print-width=140 --trailing-comma=none --write *.js *.mjs */*.js */*.mjs */*.ts",
"setup": "cd test/data && bash setup.sh",
"test": "npm run test:js && npm run test:ts && npm run test:tsc && npm run test:esm",
"test:js": "node ./test/test.js",
"test:esm": "node ./test/test.mjs",
"test:ts": "npx ts-node ./test/test.ts",
"test:tsc": "tsc --noEmit ./test/test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DanielJDufour/xml-utils.git"
},
"keywords": [
"fast",
"mrf",
"xml",
"tag",
"lite",
"utils",
"parse"
],
"author": "Daniel J. Dufour",
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/DanielJDufour/xml-utils/issues"
},
"homepage": "https://github.com/DanielJDufour/xml-utils#readme",
"devDependencies": {
"flug": "^2.7.2",
"typescript": "^5.4.2"
}
}