forked from mafintosh/csv-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
93 lines (93 loc) · 2.13 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"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 <[email protected]>"
],
"homepage": "https://github.com/mafintosh/csv-parser",
"bugs": "https://github.com/mafintosh/csv-parser/issues",
"bin": {
"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"
},
"dependencies": {
"minimist": "^1.2.8"
},
"devDependencies": {
"@commitlint/cli": "19.5.0",
"@commitlint/config-conventional": "19.5.0",
"@types/node": "22.7.9",
"ava": "6.1.3",
"bops": "1.0.1",
"chalk": "5.3.0",
"concat-stream": "2.0.0",
"csv-spectrum": "2.0.0",
"eslint": "9.13.0",
"eslint-config-standard": "14.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "7.1.0",
"eslint-plugin-standard": "5.0.0",
"execa": "2.1.0",
"globby": "14.0.2",
"husky": "9.1.6",
"lint-staged": "15.2.10",
"loud-rejection": "2.2.0",
"nyc": "17.1.0",
"pre-commit": "1.2.2",
"strip-ansi": "7.1.0",
"text-table": "0.2.0",
"time-span": "5.1.0",
"tsd": "0.31.2"
},
"directories": {
"example": "examples",
"test": "test"
},
"keywords": [
"csv",
"parser",
"fast",
"json"
],
"ava": {
"files": [
"!**/fixtures/**",
"!**/helpers/**"
],
"failWithoutAssertions": false
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"pre-commit": "lint-staged"
}