-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 909 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 909 Bytes
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
{
"author": "Alex Scheel Meyer (http://www.linkedin.com/in/alexscheelmeyer)",
"name": "csv-streamer",
"description": "CSV reader with Node Stream API",
"version": "2.0.3",
"homepage": "https://github.com/alexscheelmeyer/csv-stream",
"repository": {
"type": "git",
"url": "git://github.com/alexscheelmeyer/csv-stream.git"
},
"main": "index.js",
"nyc": {
"check-coverage": true,
"lines": 100,
"statements": 100,
"functions": 100,
"branches": 100,
"reporter": [
"lcov",
"text",
"text-summary"
]
},
"scripts": {
"test": "nyc mocha test",
"lint": "eslint ."
},
"dependencies": {},
"devDependencies": {
"eslint": "3.17.1",
"eslint-config-cerebral": "0.0.14",
"eslint-plugin-import": "2.2.0",
"mocha": "4.0.1",
"nyc": "11.3.0"
},
"optionalDependencies": {},
"engines": {
"node": ">= 6.9.1"
}
}