forked from isaacs/sax-js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.47 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
{
"name": "sax-ts",
"description": "Event-driven XML parser in TypeScript",
"author": "Maxim Mazurok <[email protected]> (https://maxim.mazurok.com/)",
"repository": "git://github.com/Maxim-Mazurok/sax-ts.git",
"homepage": "https://github.com/Maxim-Mazurok/sax-ts#readme",
"bugs": {
"url": "https://github.com/Maxim-Mazurok/sax-ts/issues/new/choose"
},
"keywords": [
"xml",
"xml-parser",
"sax",
"sax-parser",
"typescript",
"deno",
"node",
"nodejs",
"node-js"
],
"version": "1.2.13",
"main": "build/src/sax.js",
"license": "ISC",
"engines": {
"node": ">=12.19.0",
"npm": ">=6.14.8"
},
"scripts": {
"test": "tap test/*.js --cov -j4",
"posttest": "npm run lint",
"preversion": "npm test",
"postversion": "npm publish && npx jsr publish",
"postpublish": "git push origin --all; git push origin --tags",
"check": "gts check",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"prepare": "npm run compile",
"pretest": "npm run compile",
"lint": "gts lint"
},
"files": [
"src/sax.ts",
"build/src/sax.js",
"build/src/sax.js.map",
"build/src/sax.d.ts",
"LICENSE.md",
"README.md"
],
"devDependencies": {
"@types/node": "^14.11.2",
"coveralls": "^3.1.0",
"gts": "^3.0.2",
"jsr": "^0.12.1",
"prettier": "^2.1.2",
"tap": "^14.10.8",
"typescript": "^4.0.3"
},
"devDependenciesComments": {
"jsr": "needs node v18+"
}
}