forked from tuananh/camaro
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.87 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
64
65
66
67
68
69
70
71
72
{
"name": "camaro",
"version": "6.2.3",
"description": "Transforming XML to JSON using Node.js binding to native pugixml parser library",
"homepage": "https://github.com/tuananh/camaro",
"bugs": "https://github.com/tuananh/camaro/issues",
"main": "index.js",
"typings": "index.d.ts",
"engines": {
"node": ">= 12.0.0"
},
"scripts": {
"test": "tape test/*.test.js",
"bench": "node benchmark/transform.js",
"install-deps": "napa",
"build": "docker run --rm -v $(pwd):/src emscripten/emsdk:3.1.13 ./build.sh",
"gen-esm": "gen-esm-wrapper . ./index.mjs"
},
"exports": {
".": {
"require": "./index.js",
"import": "./index.mjs"
},
"./": "./"
},
"repository": {
"type": "git",
"url": "https://github.com/tuananh/camaro.git"
},
"files": [
"index.js",
"index.mjs",
"worker.js",
"dist/camaro.js",
"dist/camaro.wasm",
"index.d.ts"
],
"keywords": [
"xpath",
"json",
"transform",
"pugixml",
"xml",
"parser",
"n-api",
"xml2json",
"webassembly",
"wasm"
],
"author": "Tuan Anh Tran <[email protected]> (https://tuananh.org)",
"license": "MIT",
"napa": {
"pugixml": "tuananh/pugixml#f604f19945a02d2796f74a85b03d542ba7d8b451",
"json": "nlohmann/json#v3.11.2",
"fifo_map": "nlohmann/fifo_map#d732aaf9a315415ae8fd7eb11e3a4c1f80e42a48"
},
"napa-config": {
"cache": false
},
"devDependencies": {
"fast-xml-parser": "^4.0.1",
"gen-esm-wrapper": "^1.1.3",
"napa": "^3.0.0",
"tape": "^5.4.0",
"txml": "^5.1.1",
"xml-js": "^1.6.11",
"xml2js": "^0.6.0"
},
"dependencies": {
"piscina": "^3.2.0"
}
}