forked from matthewmatician/xml-flow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.11 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
{
"name": "xml-flow",
"version": "1.0.4",
"description": "An XML/HTML stream reader, now with less suck.",
"main": "lib/xml-flow.js",
"scripts": {
"lint": "eslint **/*.js",
"test": "mocha test/*.js",
"coverage": "nyc npm run test",
"travis": "npm run lint && npm run coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/matthewmatician/xml-flow.git"
},
"keywords": [
"xml",
"stream",
"parse",
"huge files"
],
"author": "Matthew Larson <matthewmatician@gmail.com>",
"license": "BSD",
"bugs": {
"url": "https://github.com/matthewmatician/xml-flow/issues"
},
"homepage": "https://github.com/matthewmatician/xml-flow",
"dependencies": {
"sax": "github:NodeArt/sax-js#v1.x"
},
"devDependencies": {
"chai": "*",
"coveralls": "*",
"eslint": "^6.0.0",
"eslint-plugin-mocha": "^5.3.0",
"extend": ">=3.0.2",
"mocha": "^6.1.4",
"nyc": "^14.1.1"
},
"nyc": {
"all": true,
"reporters": [
"lcov",
"text",
"text-summary"
],
"include": "lib/**/*.js",
"exclude": "test/**/*.js"
}
}