forked from tuananh/camaro
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.23 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.23 KB
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
{
"name": "camaro",
"version": "3.0.13",
"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",
"scripts": {
"test": "istanbul test ./node_modules/tape/bin/tape test/*.test.js",
"cover": "istanbul cover ./node_modules/tape/bin/tape test/*.test.js",
"bench": "node benchmark",
"install": "node-pre-gyp install --fallback-to-build"
},
"repository": {
"type": "git",
"url": "https://github.com/tuananh/camaro.git"
},
"keywords": [
"xpath",
"json",
"transform",
"pugixml",
"xml",
"parser",
"n-api",
"xml2json"
],
"author": "Tuan Anh Tran <me@tuananh.org> (https://tuananh.org)",
"license": "MIT",
"dependencies": {
"node-addon-api": "1.6.0",
"node-pre-gyp": "0.11.0"
},
"devDependencies": {
"istanbul": "0.4.5",
"tape": "4.9.1"
},
"bundledDependencies": [
"node-pre-gyp"
],
"binary": {
"module_name": "camaro",
"module_path": "./lib/binding/",
"host": "https://github.com/tuananh/camaro/releases/download/",
"remote_path": "{version}"
}
}