-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
56 lines (56 loc) · 1.17 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
{
"name": "slimdom-sax-parser",
"version": "1.5.3",
"description": "Parse an XML string to a light-weight spec-compliant document object model, for browser and Node",
"repository": "wvbe/slimdom-sax-parser",
"author": {
"name": "Wybe Minnebo",
"email": "[email protected]",
"url": "https://github.com/wvbe"
},
"contributors": [
{
"name": "tnarik",
"email": "[email protected]",
"url": "https://github.com/tnarik"
}
],
"license": "MIT",
"homepage": "https://github.com/wvbe/slimdom-sax-parser",
"keywords": [
"xml",
"parse",
"sax",
"slimdom",
"jsdom",
"dom"
],
"main": "dist/index.js",
"module": "dist/slimdom-sax-parser.esm.js",
"typings": "dist/index.d.ts",
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test",
"lint": "tsdx lint",
"prepare": "tsdx lint && tsdx test && tsdx build"
},
"dependencies": {
"saxes": "6.0.0",
"slimdom": "3.0.1"
},
"devDependencies": {
"fontoxpath": "3.23.0",
"tsdx": "0.14.1",
"tslib": "2.3.1",
"typescript": "4.5.4"
},
"prettier": {
"printWidth": 100,
"semi": true,
"singleQuote": true,
"tabWidth": 4,
"trailingComma": "none",
"useTabs": true
}
}