-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
63 lines (63 loc) · 1.58 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
{
"name": "txml",
"version": "5.1.1",
"description": "fastest XML DOM Parser for node/browser/worker",
"main": "dist/index.js",
"module": "dist/index.mjs",
"scripts": {
"build": "rollup -c && npm run buildTypes",
"buildTypes": "tsc --allowjs --emitDeclarationOnly -d dist/index.js",
"createTypes": "tsc --allowjs -d tXml.js",
"test": "node test.js --trace-warnings"
},
"files": [
"dist",
"txml.min.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/TobiasNickel/tXml.git"
},
"browser": {
"fs": false
},
"keywords": [
"xml",
"parser",
"dom",
"document",
"small",
"fast",
"simple"
],
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs"
},
"./txml": {
"require": "./dist/txml.js",
"import": "./dist/txml.mjs"
},
"./transformStream": {
"require": "./dist/transformStream.js",
"import": "./dist/transformStream.mjs"
},
"./*": "./*"
},
"author": "Tobias Nickel",
"license": "MIT",
"bugs": {
"url": "https://github.com/TobiasNickel/tXml/issues"
},
"types": "dist/index.d.ts",
"homepage": "https://github.com/TobiasNickel/tXml#readme",
"dependencies": {
"through2": "^3.0.1"
},
"devDependencies": {
"rollup": "^2.52.2",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^4.2.3"
}
}