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
| {
| "name": "xmldom",
| "version": "0.6.0",
| "description": "A pure JavaScript W3C standard-based (XML DOM Level 2 Core) DOMParser and XMLSerializer module.",
| "keywords": [
| "w3c",
| "dom",
| "xml",
| "parser",
| "javascript",
| "DOMParser",
| "XMLSerializer"
| ],
| "author": "jindw <jindw@xidea.org> (http://www.xidea.org)",
| "homepage": "https://github.com/xmldom/xmldom",
| "repository": {
| "type": "git",
| "url": "git://github.com/xmldom/xmldom.git"
| },
| "main": "lib/dom-parser.js",
| "files": [
| "CHANGELOG.md",
| "LICENSE",
| "readme.md",
| "lib"
| ],
| "scripts": {
| "lint": "npm-run-all lint:eslint",
| "lint:eslint": "eslint lib test",
| "start": "nodemon --watch package.json --watch lib --watch test --exec 'npm --silent run test'",
| "stryker": "stryker run",
| "test": "npm-run-all test:unit lint",
| "test:unit": "npm-run-all test:jest",
| "test:jest": "jest"
| },
| "engines": {
| "node": ">=10.0.0"
| },
| "dependencies": {},
| "devDependencies": {
| "@stryker-mutator/core": "^4.5.1",
| "dom-js": "0.0.9",
| "eslint": "^7.23.0",
| "eslint-config-prettier": "^8.1.0",
| "eslint-plugin-es5": "^1.5.0",
| "eslint-plugin-prettier": "^3.3.1",
| "get-stream": "^6.0.0",
| "jest": "^26.6.3",
| "nodemon": "^2.0.7",
| "npm-run-all": "^4.1.5",
| "prettier": "^2.2.1",
| "xmltest": "^1.5.0",
| "yauzl": "^2.10.0"
| },
| "maintainers": [
| {
| "name": "brodybits",
| "email": "chris@brody.consulting",
| "url": "https://github.com/brodybits"
| }
| ],
| "contributors": [
| {
| "name": "jindw",
| "email": "jindw@xidea.org",
| "url": "http://www.xidea.org"
| },
| {
| "name": "Yaron Naveh",
| "email": "yaronn01@gmail.com",
| "web": "http://webservices20.blogspot.com/"
| },
| {
| "name": "Harutyun Amirjanyan",
| "email": "amirjanyan@gmail.com",
| "web": "https://github.com/nightwing"
| },
| {
| "name": "Alan Gutierrez",
| "email": "alan@prettyrobots.com",
| "web": "http://www.prettyrobots.com/"
| },
| {
| "name": "Eric Newport",
| "email": "kethinov@gmail.com",
| "web": "https://github.com/kethinov"
| },
| {
| "name": "Christian Bewernitz",
| "email": "coder@karfau.de",
| "web": "https://github.com/karfau"
| }
| ],
| "bugs": {
| "url": "https://github.com/xmldom/xmldom/issues"
| },
| "license": "MIT"
| }
|
|