-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
44 lines (44 loc) · 962 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
{
"name": "yadbf",
"version": "3.3.0",
"description": "An error-throwing DBF/dbase parsing transform stream",
"homepage": "https://github.com/trescube/yadbf#readme",
"author": "Stephen Hess",
"license": "MIT",
"main": "index.js",
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"lint": "eslint .",
"travis": "yarn test",
"test": "nyc --reporter=html --reporter=text mocha",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"keywords": [
"DBF",
"dbase",
"stream"
],
"bugs": {
"url": "https://github.com/trescube/yadbf/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/trescube/yadbf.git"
},
"devDependencies": {
"coveralls": "^3.1.0",
"eslint": "^7.22.0",
"mocha": "^8.3.2",
"nyc": "^15.0.0"
},
"pre-commit": [
"lint",
"test"
],
"dependencies": {
"iconv-lite": "^0.6.2"
}
}