-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
51 lines (51 loc) · 1.25 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
{
"name": "xml-reader",
"version": "2.4.3",
"description": "XML Reader and Parser",
"main": "dist/reader.js",
"scripts": {
"build": "babel src --out-dir dist",
"prepublish": "npm test && npm build",
"prebuild": "npm run clean",
"clean": "rimraf dist",
"test": "nyc --reporter=lcov ava --verbose test/test.js",
"report": "nyc report --reporter=html && opn coverage/index.html",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls"
},
"author": "Pedro Ladaria <[email protected]>",
"license": "MIT",
"keywords": [
"xml",
"reader",
"sax",
"lexer",
"parser",
"parsing",
"parse",
"ast",
"stream",
"streaming"
],
"dependencies": {
"eventemitter3": "^2.0.0",
"xml-lexer": "^0.2.2"
},
"devDependencies": {
"ava": "^0.16.0",
"babel-cli": "^6.14.0",
"babel-preset-es2015": "^6.14.0",
"clone": "^1.0.2",
"coveralls": "^2.11.14",
"nyc": "^8.3.0",
"opn-cli": "^3.1.0",
"rimraf": "^2.5.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pladaria/xml-reader.git"
},
"bugs": {
"url": "https://github.com/pladaria/xml-reader/issues"
},
"homepage": "https://github.com/pladaria/xml-reader#readme"
}