-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.08 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.08 KB
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
{
"name": "xml-toolkit",
"version": "1.1.6",
"description": "XML parser, marshaller, SOAP adapter",
"main": "index.js",
"files": [
"/lib",
"/badges"
],
"scripts": {
"test": "jest",
"test-ci": "jest --ci --coverage"
},
"jest": {
"collectCoverageFrom": [
"lib/**/*.js"
],
"coverageReporters": [
"clover",
"json",
"lcov",
"text",
"json-summary"
],
"verbose": false,
"testPathIgnorePatterns": [
"/node_modules/",
"/__tests__/0ld",
"/__tests__/data",
"/__tests__/lib"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/do-/node-xml-toolkit.git"
},
"keywords": [
"xml",
"soap",
"xsd",
"wsdl",
"sax"
],
"author": "Dmitry Ovsyanko",
"license": "MIT",
"bugs": {
"url": "https://github.com/do-/node-xml-toolkit/issues"
},
"homepage": "https://github.com/do-/node-xml-toolkit#readme",
"devDependencies": {
"jest": "^29.3.1"
},
"dependencies": {
"http-errors": "^2.0.0",
"string-escape-map": "^1.0.0"
}
}