-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 899 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
{
"name": "file2json-stream",
"version": "1.0.3",
"description": "Parses fixed record text files in stream into JSON objects",
"license": "MIT",
"repository": "mgardner02/file2json-stream",
"main": "index.js",
"keywords": [
"text",
"to",
"json",
"parse",
"flat",
"file",
"fixed",
"record",
"stream"
],
"scripts": {
"test": "nyc mocha",
"lint": "eslint .",
"report-coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov"
},
"dependencies": {},
"devDependencies": {
"chai": "^4.2.0",
"codecov": "^3.2.0",
"eslint": "^5.15.3",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"event-stream": "^4.0.1",
"mocha": "^6.0.2",
"nyc": "^13.3.0"
}
}