forked from dsummersl/node-xml2js-xpath
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.5 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
{
"name": "xml2js-xpath",
"version": "0.13.0",
"description": "Search xml2js JSON documents with XPath query strings.",
"keywords": [
"xml2js",
"xpath",
"search",
"parse"
],
"homepage": "https://github.com/dsummersl/node-xml2js-xpath",
"bugs": {
"url": "https://github.com/dsummersl/node-xml2js-xpath/issues"
},
"license": "ISC",
"author": "Dane Summers",
"main": "xpath.js",
"repository": {
"type": "git",
"url": "https://github.com/dsummersl/node-xml2js-xpath.git"
},
"scripts": {
"prepublish": "babel src/xpath.js > xpath.js",
"test": "mocha src/**/*.test.js",
"coverage": "nyc mocha src/**/*.test.js"
},
"dependencies": {
"lodash": "^4.17.21"
},
"devDependencies": {
"@babel/cli": "^7.13.10",
"@babel/core": "^7.13.15",
"@babel/plugin-transform-runtime": "^7.13.15",
"@babel/preset-env": "^7.13.15",
"@babel/register": "^7.13.10",
"@babel/runtime": "^7.13.10",
"@istanbuljs/nyc-config-babel": "^3.0.0",
"babel-plugin-istanbul": "^6.0.0",
"chai": "^4.3.4",
"eslint": "^8.14.0",
"mocha": "^9.2.2",
"nyc": "latest",
"xml2js": "^0.4.23"
},
"typings": "xml2js-xpath",
"babel": {
"plugins": [
"@babel/plugin-transform-runtime"
],
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
}
}
]
],
"env": {
"test": {
"plugins": [
"istanbul"
]
}
}
}
}