-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.3 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.3 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
49
50
51
52
53
54
{
"name": "xml-query",
"version": "1.5.0",
"description": "Super small library to retrieve values and attributes from the XML AST generated by xml-reader",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "nyc --reporter=lcov --reporter=text ava test/test.js --verbose",
"pretest": "tsc",
"prepublishOnly": "npm test",
"report": "nyc report --reporter=html && opn coverage/index.html",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls"
},
"keywords": [
"xml",
"ast",
"get",
"find",
"query",
"get",
"read",
"tags",
"values",
"attributes",
"find",
"children",
"nodes"
],
"author": "Pedro Ladaria <pedro.ladaria@gmail.com>",
"license": "MIT",
"devDependencies": {
"ava": "^0.15.2",
"coveralls": "^3.0.2",
"nyc": "^13.1.0",
"opn-cli": "^3.1.0",
"typescript": "^1.8.10",
"xml-reader": "^2.4.3"
},
"directories": {
"test": "test"
},
"dependencies": {},
"repository": {
"type": "git",
"url": "git+https://github.com/pladaria/xml-query.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"bugs": {
"url": "https://github.com/pladaria/xml-query/issues"
},
"homepage": "https://github.com/pladaria/xml-query#readme"
}