-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.42 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
{
"name": "microxml",
"version": "1.0.1",
"description": "Minimal and fast non-validating XML reader.",
"repository": {
"type": "git",
"url": "git+https://github.com/wtfanime/xml.git"
},
"keywords": [
"xml",
"xml10",
"xml11",
"tokenizer",
"lexer",
"sax",
"saxes",
"parser"
],
"author": "Yuri Zemskov <miyaokamarina@gmail.com> (https://twitter.com/miyaokamarina)",
"license": "MIT",
"bugs": {
"url": "https://github.com/wtfanime/xml/issues"
},
"homepage": "https://github.com/wtfanime/xml#readme",
"sideEffect": false,
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": {
"import": "./dist/index.d.mts",
"require": "./dist/index.d.cts"
},
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"scripts": {
"test": "jest",
"compile": "tsc -b && rollup -c rollup.config.mjs",
"prepare": "./etc/build.bash"
},
"devDependencies": {
"@jest/globals": "^29.3.1",
"@rollup/plugin-terser": "^0.3.0",
"jest": "^29.3.1",
"prettier": "^2.8.2",
"rollup": "^3.9.1",
"ts-jest": "^29.0.3",
"typescript": "^4.9.4"
}
}