-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.19 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
{
"name": "xmltest",
"version": "2.0.2",
"description": "Redistribution of <ftp://ftp.jclark.com/pub/xml/xmltest.zip> as a npm package to make it easy to access the test cases from javascript.\nThe linked zip file is from <http://www.jclark.com/xml/> which describes it's purpose and links more related resources.",
"engines": {
"node": ">=18"
},
"files": [
"cache.js",
"README.md",
"LICENSE",
"xmltest.zip",
"xmltest.json"
],
"bin": {
"xmltest": "xmltest.js"
},
"main": "xmltest.js",
"scripts": {
"extract": "npx extract-zip xmltest.zip $PWD/data",
"test": "jest",
"test.zip": "./test.zip.sh",
"start": "npm run test -- --watch",
"xmltest.json": "runex ./xmltest.js > xmltest.json"
},
"repository": {
"type": "git",
"url": "https://github.com/karfau/xmltest.git"
},
"keywords": [
"xml",
"test"
],
"license": "MIT",
"dependencies": {},
"devDependencies": {
"@types/node": "22.10.0",
"@types/yauzl": "2.10.3",
"get-stream": "6.0.1",
"jest": "29.7.0",
"np": "10.1.0",
"runex": "0.4.1",
"yauzl": "3.2.0"
},
"peerDependencies": {
"get-stream": "^6.0.1",
"yauzl": ">=3.1.3"
}
}