-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
44 lines (44 loc) · 1.06 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
{
"name": "csv-split-stream",
"version": "1.0.2",
"description": "Splits a CSV read stream into multiple write streams",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"coverage": "nyc report --reporter=lcov",
"coveralls-coverage": "nyc report --reporter=text-lcov | coveralls",
"lint": "eslint .",
"test": "nyc --all mocha --recursive ./test",
"posttest": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/AlexanderMS/csv-split-stream.git"
},
"keywords": [
"csv",
"split",
"stream"
],
"author": "Alex Murashkin",
"license": "MIT",
"bugs": {
"url": "https://github.com/AlexanderMS/csv-split-stream/issues"
},
"homepage": "https://github.com/AlexanderMS/csv-split-stream#readme",
"dependencies": {
"byline": "5.0.0"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"coveralls": "^2.13.0",
"debug": "^2.6.3",
"eslint": "^3.12.0",
"mocha": "^3.2.0",
"nyc": "^10.2.0",
"sinon": "^1.17.6"
}
}