forked from randymized/async-saxophone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1021 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
44
45
46
47
{
"name": "async-saxophone",
"description": "Fast and lightweight asynchronous iterator XML parser in pure JavaScript",
"version": "1.0.1",
"license": "MIT",
"main": "lib/index.js",
"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=text-lcov | coveralls"
},
"nyc": {
"exclude": [
"node_modules",
"lib/**/*.test.js"
]
},
"engines": {
"node": ">=10"
},
"keywords": [
"xml",
"parser",
"sax",
"asynchronous",
"async",
"iterator",
"fast"
],
"files": [
"lib/**/*"
],
"devDependencies": {
"benchmark": "^2.1.4",
"common-tags": "^1.8.0",
"coveralls": "^3.1.0",
"eslint": "^7.7.0",
"faucet": "0.0.1",
"lodash.uniq": "^4.5.0",
"nyc": "^15.1.0",
"tap-spec": "^5.0.0",
"tape-async": "^2.3.0"
},
"dependencies": {}
}