forked from vflash/easysax
-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
63 lines (63 loc) · 1.4 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
63
{
"name": "saxen",
"description": "A tiny, super fast, namespace aware sax-style XML parser written in plain JavaScript",
"scripts": {
"all": "run-s lint test-coverage test-perf",
"lint": "eslint . --ext js,cjs",
"pretest": "run-s bundle",
"bundle": "rollup -c --bundleConfigAsCjs",
"test": "mocha test/*.js",
"test-coverage": "c8 --reporter=lcov --reporter=html npm test",
"test-perf": "node test/perf/index.cjs",
"prepare": "run-s bundle"
},
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"keywords": [
"xml",
"sax",
"parser",
"pure"
],
"version": "10.0.0",
"bugs": {
"url": "https://github.com/nikku/saxen/issues"
},
"engines": {
"node": ">= 18"
},
"author": {
"name": "Nico Rehwaldt",
"url": "https://github.com/nikku"
},
"contributors": [
{
"name": "Vopilovskiy Konstantin",
"email": "flash.vkv@gmail.com",
"url": "http://vflash.ru"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nikku/saxen"
},
"devDependencies": {
"c8": "^10.1.2",
"eslint": "^8.57.1",
"eslint-plugin-bpmn-io": "^1.0.1",
"mocha": "^10.7.3",
"npm-run-all": "^4.1.1",
"rollup": "^4.24.0",
"table": "^6.8.2"
},
"files": [
"dist"
]
}