-
-
Notifications
You must be signed in to change notification settings - Fork 135
/
package.json
92 lines (92 loc) · 2.11 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
{
"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>"
],
"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.0"
},
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.0.0",
"@types/node": "^12.0.0",
"ava": "^2.4.0",
"bops": "^1.0.0",
"chalk": "^2.4.2",
"concat-stream": "^2.0.0",
"csv-spectrum": "^1.0.0",
"eslint": "^6.4.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"execa": "^2.1.0",
"globby": "^10.0.1",
"husky": "^3.0.0",
"lint-staged": "^9.0.2",
"loud-rejection": "^2.1.0",
"nyc": "^14.1.1",
"pre-commit": "^1.2.2",
"strip-ansi": "^5.2.0",
"text-table": "^0.2.0",
"time-span": "^3.1.0",
"tsd": "^0.8.0"
},
"directories": {
"example": "examples",
"test": "test"
},
"keywords": [
"csv",
"parser",
"fast",
"json"
],
"ava": {
"files": [
"!**/fixtures/**",
"!**/helpers/**"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"pre-commit": "lint-staged"
}