forked from snappyjs/node-xml-stream
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
43 lines (43 loc) · 1017 Bytes
/
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
{
"name": "node-xml-stream-parser",
"version": "1.0.12",
"description": "A fast XML parser using streams.",
"main": "dist/index.js",
"scripts": {
"test": "mocha dist/**/*.spec.js",
"test:src": "mocha src/**/*.spec.js --compilers js:babel-core/register --watch",
"test:src:inspect": "mocha src/**/*.spec.js --compilers js:babel-core/register --watch --inspect-brk",
"build": "./node_modules/.bin/babel src --out-dir dist",
"lint": "./node_modules/.bin/eslint ./src/**"
},
"keywords": [
"XML",
"XML Parser",
"XML Stream Parser",
"XML Stream",
"Streaming XML",
"Fast XML Parser",
"nodeJS"
],
"author": "Tommy Dronkers",
"contributors": [
{
"name": "Mario Fahlandt"
},
{
"name": "Markus Velten"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mfahlandt/node-xml-stream-parser/"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.1.0",
"eslint": "^4.3.0",
"mocha": "^6.1.3"
}
}