-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
36 lines (36 loc) · 975 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
{
"name": "@excelerate/node-xml-stream",
"version": "1.0.2",
"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": "babel src --out-dir dist",
"build:watch": "npm run build -- -w",
"lint": "eslint ./src/**",
"prepublishOnly": "cross-env NODE_ENV=production npm run build"
},
"keywords": [
"XML",
"XML Parser",
"XML Stream Parser",
"XML Stream",
"Streaming XML",
"Fast XML Parser"
],
"author": "Tommy Dronkers",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Steeljuice/node-xml-stream"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"chai": "^4.2.0",
"eslint": "^7.13.0",
"mocha": "^8.2.1"
}
}