Skip to content

Commit

Permalink
fix #42
Browse files Browse the repository at this point in the history
  • Loading branch information
touv committed Apr 20, 2020
1 parent 489ad4d commit bf10676
Showing 1 changed file with 82 additions and 80 deletions.
162 changes: 82 additions & 80 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,82 +1,84 @@
{
"name": "csv-string",
"version": "4.0.0",
"description": "PARSE and STRINGIFY for CSV strings. It's like JSON object but for CSV. It can also work row by row. And, if can parse strings, it can be use to parse files or streams too.",
"keywords": [
"csv",
"parser",
"string",
"generator"
],
"repository": {
"type": "git",
"url": "https://github.com/Inist-CNRS/node-csv-string"
},
"license": "MIT",
"author": "Nicolas Thouvenin <nthouvenin@gmail.com>",
"contributors": [
{
"name": "Mehul Mohan",
"url": "https://github.com/mehulmpt"
},
{
"name": "Hossam Magdy",
"url": "https://github.com/hossam-magdy"
},
{
"name": "Rich",
"url": "https://github.com/rich-TIA"
},
{
"name": "Stéphane Gully",
"url": "https://github.com/kerphi"
},
{
"name": "J Baumbach",
"url": "https://github.com/jbaumbach"
},
{
"name": "Sam Hauglustaine",
"url": "https://github.com/smhg"
},
{
"name": "Rick Huizinga",
"url": "https://github.com/rickhuizinga"
},
{
"name": "François Parmentier",
"url": "https://github.com/parmentf"
}
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"build": "rm -rf ./dist && tsc",
"lint": "eslint --ext js,ts .",
"test": "jest --coverage",
"bench": "./bench/_bench.sh"
},
"dependencies": {},
"devDependencies": {
"@types/jest": "^25.1.4",
"@types/mocha": "^7.0.2",
"@types/node": "^13.9.5",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.1.2",
"jest": "^25.2.3",
"prettier": "^2.0.2",
"ts-jest": "^25.2.1",
"ts-node": "^8.8.1",
"typescript": "^3.8.3"
},
"engines": {
"node": ">=12.0"
}
"name": "csv-string",
"version": "4.0.0",
"description": "PARSE and STRINGIFY for CSV strings. It's like JSON object but for CSV. It can also work row by row. And, if can parse strings, it can be use to parse files or streams too.",
"keywords": [
"csv",
"parser",
"string",
"generator"
],
"repository": {
"type": "git",
"url": "https://github.com/Inist-CNRS/node-csv-string"
},
"license": "MIT",
"author": "Nicolas Thouvenin <nthouvenin@gmail.com>",
"contributors": [
{
"name": "Mehul Mohan",
"url": "https://github.com/mehulmpt"
},
{
"name": "Hossam Magdy",
"url": "https://github.com/hossam-magdy"
},
{
"name": "Rich",
"url": "https://github.com/rich-TIA"
},
{
"name": "Stéphane Gully",
"url": "https://github.com/kerphi"
},
{
"name": "J Baumbach",
"url": "https://github.com/jbaumbach"
},
{
"name": "Sam Hauglustaine",
"url": "https://github.com/smhg"
},
{
"name": "Rick Huizinga",
"url": "https://github.com/rickhuizinga"
},
{
"name": "François Parmentier",
"url": "https://github.com/parmentf"
}
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"build": "rm -rf ./dist && tsc",
"lint": "eslint --ext js,ts .",
"test": "jest --coverage",
"bench": "./bench/_bench.sh",
"preversion": "npm build",
"postversion": "git push && git push --tags"
},
"dependencies": {},
"devDependencies": {
"@types/jest": "^25.1.4",
"@types/mocha": "^7.0.2",
"@types/node": "^13.9.5",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.1.2",
"jest": "^25.2.3",
"prettier": "^2.0.2",
"ts-jest": "^25.2.1",
"ts-node": "^8.8.1",
"typescript": "^3.8.3"
},
"engines": {
"node": ">=12.0"
}
}

0 comments on commit bf10676

Please sign in to comment.