forked from dsummersl/node-xml2js-xpath
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1018 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 1018 Bytes
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
{
"name": "xml2js-xpath",
"version": "0.9.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": "./node_modules/.bin/babel src/xpath.js > xpath.js",
"test": "babel-node node_modules/.bin/babel-istanbul cover node_modules/.bin/_mocha -- 'src/**/*.spec.js'"
},
"dependencies": {
"lodash": "4.17.5"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.26.0",
"babel-istanbul": "0.12.2",
"babel-preset-env": "^1.6.1",
"chai": "4.1.2",
"mocha": "5.0.1",
"xml2js": "0.4.19"
},
"typings": "xml2js-xpath"
}