-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
57 lines (57 loc) · 1.23 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
52
53
54
55
56
57
{
"name": "saxophone",
"description": "Fast and lightweight event-driven XML parser in pure JavaScript",
"version": "0.8.0",
"license": "MIT",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/matteodelabre/saxophone.git"
},
"scripts": {
"lint": "eslint .",
"tape": "tape 'lib/**/*.test.js'",
"test": "npm run --silent tape | faucet",
"coverage": "nyc --reporter=html --reporter=text npm --silent run tape",
"coveralls": "nyc report --reporter=lcov",
"benchmark": "node benchmark"
},
"nyc": {
"exclude": [
"node_modules",
"lib/**/*.test.js"
]
},
"engines": {
"node": "14 || 16 || 18"
},
"keywords": [
"xml",
"parser",
"stream",
"sax",
"fast"
],
"files": [
"lib/**/*"
],
"author": {
"name": "Mattéo Delabre",
"email": "spam@delab.re",
"url": "https://github.com/matteodelabre"
},
"devDependencies": {
"benchmark": "^2.1.4",
"common-tags": "^1.8.2",
"eslint": "^8.18.0",
"faucet": "0.0.1",
"lodash.uniq": "^4.5.0",
"nyc": "^15.1.0",
"tap-spec": "^5.0.0",
"tape": "^5.5.3"
},
"dependencies": {
"readable-stream": "^4.0.0",
"string_decoder": "^1.3.0"
}
}