UNPKG

1.1 kBJSONView Raw
1{
2 "name": "csv2json",
3 "version": "2.0.2",
4 "license": "ISC",
5 "description": "Stream and CLI to convert CSV to JSON",
6 "keywords": [
7 "csv",
8 "json",
9 "csv2json",
10 "csvtojson",
11 "stream"
12 ],
13 "homepage": "https://github.com/julien-f/csv2json",
14 "bugs": "https://github.com/julien-f/csv2json/issues",
15 "repository": {
16 "type": "git",
17 "url": "https://github.com/julien-f/csv2json.git"
18 },
19 "author": {
20 "name": "Julien Fontanet",
21 "email": "julien.fontanet@isonoe.net"
22 },
23 "preferGlobal": false,
24 "bin": {
25 "csv2json": "cli.js"
26 },
27 "files": [
28 "*.js"
29 ],
30 "dependencies": {
31 "csv-parser": "^2.3.0",
32 "exec-promise": "^0.7.0",
33 "minimist": "^1.2.0",
34 "promise-toolbox": "^0.14.0",
35 "pump": "^3.0.0",
36 "pumpify": "^2.0.0",
37 "strip-bom-stream": "^4.0.0",
38 "through2": "^3.0.1"
39 },
40 "devDependencies": {
41 "husky": "^3.0.5",
42 "standard": "^14.1.0"
43 },
44 "scripts": {
45 "test": "standard"
46 },
47 "jest": {
48 "testRegex": "\\.spec\\.js$"
49 },
50 "husky": {
51 "hooks": {
52 "commit-msg": "npm run test"
53 }
54 }
55}