move to node version 12

This commit is contained in:
bitkarrot
2022-03-20 23:59:34 -07:00
parent eddc7d6df1
commit a725bca03a
82 changed files with 4743 additions and 2304 deletions

118
node_modules/csv-parser/package.json generated vendored
View File

@@ -1,39 +1,51 @@
{
"name": "csv-parser",
"version": "3.0.0",
"description": "Streaming CSV parser that aims for maximum speed as well as compatibility with the csv-spectrum test suite",
"license": "MIT",
"repository": "mafintosh/csv-parser",
"author": "mafintosh",
"maintainers": [
"Andrew Powell <andrew@shellscape.org>"
"_args": [
[
"csv-parser@3.0.0",
"/Users/bitcarrot/github/satshkd-vercel"
]
],
"homepage": "https://github.com/mafintosh/csv-parser",
"bugs": "https://github.com/mafintosh/csv-parser/issues",
"_from": "csv-parser@3.0.0",
"_id": "csv-parser@3.0.0",
"_inBundle": false,
"_integrity": "sha512-s6OYSXAK3IdKqYO33y09jhypG/bSDHPuyCme/IdEHfWpLf/jKcpitVFyOC6UemgGk8v7Q5u2XE0vvwmanxhGlQ==",
"_location": "/csv-parser",
"_phantomChildren": {},
"_requested": {
"type": "version",
"registry": true,
"raw": "csv-parser@3.0.0",
"name": "csv-parser",
"escapedName": "csv-parser",
"rawSpec": "3.0.0",
"saveSpec": null,
"fetchSpec": "3.0.0"
},
"_requiredBy": [
"/"
],
"_resolved": "https://registry.npmjs.org/csv-parser/-/csv-parser-3.0.0.tgz",
"_spec": "3.0.0",
"_where": "/Users/bitcarrot/github/satshkd-vercel",
"author": {
"name": "mafintosh"
},
"ava": {
"files": [
"!**/fixtures/**",
"!**/helpers/**"
]
},
"bin": {
"csv-parser": "./bin/csv-parser"
"csv-parser": "bin/csv-parser"
},
"main": "index.js",
"files": [
"bin/csv-parser",
"index.js",
"index.d.ts"
],
"engines": {
"node": ">= 10"
},
"scripts": {
"bench": "bin/bench",
"commitlint": "commitlint",
"coverage": "nyc npm run test && nyc report --reporter=text-lcov > coverage.lcov",
"lint": "eslint .",
"lint-staged": "lint-staged",
"security": "npm audit",
"test": "ava && tsd"
"bugs": {
"url": "https://github.com/mafintosh/csv-parser/issues"
},
"dependencies": {
"minimist": "^1.2.0"
},
"description": "Streaming CSV parser that aims for maximum speed as well as compatibility with the csv-spectrum test suite",
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.0.0",
@@ -65,28 +77,54 @@
"example": "examples",
"test": "test"
},
"engines": {
"node": ">= 10"
},
"files": [
"bin/csv-parser",
"index.js",
"index.d.ts"
],
"homepage": "https://github.com/mafintosh/csv-parser",
"husky": {
"hooks": {
"commit-msg": "commitlint -e $HUSKY_GIT_PARAMS"
}
},
"keywords": [
"csv",
"parser",
"fast",
"json"
],
"ava": {
"files": [
"!**/fixtures/**",
"!**/helpers/**"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $HUSKY_GIT_PARAMS"
}
},
"license": "MIT",
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"pre-commit": "lint-staged"
"main": "index.js",
"maintainers": [
{
"name": "Andrew Powell",
"email": "andrew@shellscape.org"
}
],
"name": "csv-parser",
"pre-commit": "lint-staged",
"repository": {
"type": "git",
"url": "git+https://github.com/mafintosh/csv-parser.git"
},
"scripts": {
"bench": "bin/bench",
"commitlint": "commitlint",
"coverage": "nyc npm run test && nyc report --reporter=text-lcov > coverage.lcov",
"lint": "eslint .",
"lint-staged": "lint-staged",
"security": "npm audit",
"test": "ava && tsd"
},
"version": "3.0.0"
}