-
Notifications
You must be signed in to change notification settings - Fork 214
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* [ADDED] `maxRows` option to limit the number of rows parsed. #275 #277 - @cbrittingham * [ADDED] `skipRows` to allow skipping parsed rows see parsing.md * [ADDED] `skipLines` to allow skipping entire lines of a csv parsing.md #267 * Exported formatting and parsing types. * Removed `.npmignore` in favor of `package.json` files
- Loading branch information
1 parent
63c8872
commit 20d7a99
Showing
3 changed files
with
4 additions
and
10 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
{ | ||
"name": "fast-csv", | ||
"version": "3.5.0", | ||
"version": "3.6.0", | ||
"description": "CSV parser and writer", | ||
"main": "./build/src/index.js", | ||
"types": "./build/src/index.d.ts", | ||
"scripts": { | ||
"prepublish": "npm run build", | ||
"prepare": "npm run build", | ||
"build": "tsc", | ||
"mocha": "nyc mocha", | ||
"test": "npm run lint && npm run mocha", | ||
|
@@ -14,6 +14,7 @@ | |
"benchmark": "node ./benchmark", | ||
"coverage": "nyc report --reporter=text-lcov | coveralls" | ||
}, | ||
"files": ["build/src/**"], | ||
"repository": { | ||
"type": "git", | ||
"url": "[email protected]:C2FO/fast-csv.git" | ||
|