|
1 | 1 | { |
2 | | - "name": "camaro", |
3 | | - "version": "6.4.0", |
4 | | - "description": "Transforming XML to JSON using Node.js binding to native pugixml parser library", |
5 | | - "homepage": "https://github.com/tuananh/camaro", |
6 | | - "bugs": "https://github.com/tuananh/camaro/issues", |
7 | | - "main": "index.js", |
8 | | - "typings": "index.d.ts", |
9 | | - "engines": { |
10 | | - "node": ">= 20.x" |
11 | | - }, |
12 | | - "scripts": { |
13 | | - "test": "tape test/*.test.js", |
14 | | - "bench:all": "node benchmark/transform.js", |
15 | | - "bench:baseline": "node benchmark/baseline.js", |
16 | | - "bench:to-json": "node benchmark/to-json.js", |
17 | | - "install-deps": "napa", |
18 | | - "build": "docker run --rm -v $(pwd):/src emscripten/emsdk:6.0.0 ./build.sh", |
19 | | - "gen-esm": "gen-esm-wrapper . ./index.mjs" |
20 | | - }, |
21 | | - "exports": { |
22 | | - ".": { |
23 | | - "require": "./index.js", |
24 | | - "import": "./index.mjs", |
25 | | - "types": "./index.d.ts" |
26 | | - } |
27 | | - }, |
28 | | - "repository": { |
29 | | - "type": "git", |
30 | | - "url": "git+https://github.com/tuananh/camaro.git" |
31 | | - }, |
32 | | - "files": [ |
33 | | - "index.js", |
34 | | - "index.mjs", |
35 | | - "worker.js", |
36 | | - "dist/camaro.js", |
37 | | - "dist/camaro.wasm", |
38 | | - "index.d.ts" |
39 | | - ], |
40 | | - "keywords": [ |
41 | | - "xpath", |
42 | | - "json", |
43 | | - "transform", |
44 | | - "pugixml", |
45 | | - "xml", |
46 | | - "parser", |
47 | | - "n-api", |
48 | | - "xml2json", |
49 | | - "webassembly", |
50 | | - "wasm" |
51 | | - ], |
52 | | - "author": "Tuan Anh Tran <me@tuananh.org> (https://tuananh.org)", |
53 | | - "license": "MIT", |
54 | | - "napa": { |
55 | | - "pugixml": "tuananh/pugixml#2e2283336364c2a55e07b6384334f64a09f3f8b0", |
56 | | - "json": "nlohmann/json#v3.12.0", |
57 | | - "fifo_map": "nlohmann/fifo_map#v1.0.1" |
58 | | - }, |
59 | | - "napa-config": { |
60 | | - "cache": false |
61 | | - }, |
62 | | - "devDependencies": { |
63 | | - "fast-xml-parser": "^5.2.5", |
64 | | - "gen-esm-wrapper": "^1.1.3", |
65 | | - "mitata": "^1.0.34", |
66 | | - "napa": "^3.0.0", |
67 | | - "tape": "^5.4.0", |
68 | | - "txml": "^6.0.0", |
69 | | - "xml-js": "^1.6.11", |
70 | | - "xml2js": "^0.6.0" |
71 | | - }, |
72 | | - "dependencies": {} |
| 2 | + "name": "camaro", |
| 3 | + "version": "6.5.0-rc0", |
| 4 | + "description": "Transforming XML to JSON using Node.js binding to native pugixml parser library", |
| 5 | + "homepage": "https://github.com/tuananh/camaro", |
| 6 | + "bugs": "https://github.com/tuananh/camaro/issues", |
| 7 | + "main": "index.js", |
| 8 | + "typings": "index.d.ts", |
| 9 | + "engines": { |
| 10 | + "node": ">= 20.x" |
| 11 | + }, |
| 12 | + "scripts": { |
| 13 | + "test": "tape test/*.test.js", |
| 14 | + "bench:all": "node benchmark/transform.js", |
| 15 | + "bench:baseline": "node benchmark/baseline.js", |
| 16 | + "bench:to-json": "node benchmark/to-json.js", |
| 17 | + "install-deps": "napa", |
| 18 | + "build": "docker run --rm -v $(pwd):/src emscripten/emsdk:6.0.0 ./build.sh", |
| 19 | + "gen-esm": "gen-esm-wrapper . ./index.mjs" |
| 20 | + }, |
| 21 | + "exports": { |
| 22 | + ".": { |
| 23 | + "require": "./index.js", |
| 24 | + "import": "./index.mjs", |
| 25 | + "types": "./index.d.ts" |
| 26 | + } |
| 27 | + }, |
| 28 | + "repository": { |
| 29 | + "type": "git", |
| 30 | + "url": "git+https://github.com/tuananh/camaro.git" |
| 31 | + }, |
| 32 | + "files": [ |
| 33 | + "index.js", |
| 34 | + "index.mjs", |
| 35 | + "worker.js", |
| 36 | + "dist/camaro.js", |
| 37 | + "dist/camaro.wasm", |
| 38 | + "index.d.ts" |
| 39 | + ], |
| 40 | + "keywords": [ |
| 41 | + "xpath", |
| 42 | + "json", |
| 43 | + "transform", |
| 44 | + "pugixml", |
| 45 | + "xml", |
| 46 | + "parser", |
| 47 | + "n-api", |
| 48 | + "xml2json", |
| 49 | + "webassembly", |
| 50 | + "wasm" |
| 51 | + ], |
| 52 | + "author": "Tuan Anh Tran <me@tuananh.org> (https://tuananh.org)", |
| 53 | + "license": "MIT", |
| 54 | + "napa": { |
| 55 | + "pugixml": "tuananh/pugixml#2e2283336364c2a55e07b6384334f64a09f3f8b0", |
| 56 | + "json": "nlohmann/json#v3.12.0", |
| 57 | + "fifo_map": "nlohmann/fifo_map#v1.0.1" |
| 58 | + }, |
| 59 | + "napa-config": { |
| 60 | + "cache": false |
| 61 | + }, |
| 62 | + "devDependencies": { |
| 63 | + "fast-xml-parser": "^5.2.5", |
| 64 | + "gen-esm-wrapper": "^1.1.3", |
| 65 | + "mitata": "^1.0.34", |
| 66 | + "napa": "^3.0.0", |
| 67 | + "tape": "^5.4.0", |
| 68 | + "txml": "^6.0.0", |
| 69 | + "xml-js": "^1.6.11", |
| 70 | + "xml2js": "^0.6.0" |
| 71 | + }, |
| 72 | + "dependencies": {} |
73 | 73 | } |
0 commit comments