UNPKG

2.32 kBJSONView Raw
1{
2 "name": "csv-parser",
3 "version": "2.3.2",
4 "description": "Streaming CSV parser that aims for maximum speed as well as compatibility with the csv-spectrum test suite",
5 "license": "MIT",
6 "repository": "mafintosh/csv-parser",
7 "author": "mafintosh",
8 "maintainers": [
9 "Andrew Powell <andrew@shellscape.org>"
10 ],
11 "homepage": "https://github.com/mafintosh/csv-parser",
12 "bugs": "https://github.com/mafintosh/csv-parser/issues",
13 "bin": {
14 "csv-parser": "./bin/csv-parser"
15 },
16 "main": "index.js",
17 "files": [
18 "bin/csv-parser",
19 "index.js",
20 "index.d.ts"
21 ],
22 "engines": {
23 "node": ">= 8.16.0"
24 },
25 "scripts": {
26 "bench": "bin/bench",
27 "commitlint": "commitlint",
28 "coverage": "nyc npm run test && nyc report --reporter=text-lcov > coverage.lcov",
29 "lint": "eslint .",
30 "lint-staged": "lint-staged",
31 "security": "npm audit",
32 "test": "ava && tsd"
33 },
34 "dependencies": {
35 "@hapi/joi": "^16.1.4",
36 "buffer-alloc": "^1.1.0",
37 "buffer-from": "^1.0.0",
38 "generate-object-property": "^1.0.0",
39 "minimist": "^1.2.0",
40 "ndjson": "^1.4.0"
41 },
42 "devDependencies": {
43 "@commitlint/cli": "^8.2.0",
44 "@commitlint/config-conventional": "^8.0.0",
45 "@types/node": "^12.0.0",
46 "ava": "^2.4.0",
47 "bops": "^1.0.0",
48 "chalk": "^2.4.2",
49 "concat-stream": "^2.0.0",
50 "csv-spectrum": "^1.0.0",
51 "eslint": "^6.4.0",
52 "eslint-config-standard": "^14.1.0",
53 "eslint-plugin-import": "^2.18.2",
54 "eslint-plugin-node": "^10.0.0",
55 "eslint-plugin-promise": "^4.1.1",
56 "eslint-plugin-standard": "^4.0.0",
57 "execa": "^2.1.0",
58 "globby": "^10.0.1",
59 "husky": "^3.0.0",
60 "lint-staged": "^9.0.2",
61 "loud-rejection": "^2.1.0",
62 "nyc": "^14.1.1",
63 "pre-commit": "^1.2.2",
64 "strip-ansi": "^5.2.0",
65 "text-table": "^0.2.0",
66 "time-span": "^3.1.0",
67 "tsd": "^0.8.0"
68 },
69 "directories": {
70 "example": "examples",
71 "test": "test"
72 },
73 "keywords": [
74 "csv",
75 "parser",
76 "fast",
77 "json"
78 ],
79 "ava": {
80 "files": [
81 "!**/fixtures/**",
82 "!**/helpers/**"
83 ]
84 },
85 "husky": {
86 "hooks": {
87 "commit-msg": "commitlint -e $HUSKY_GIT_PARAMS"
88 }
89 },
90 "lint-staged": {
91 "*.js": [
92 "eslint --fix",
93 "git add"
94 ]
95 },
96 "pre-commit": "lint-staged"
97}