-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
55 lines (55 loc) · 1.08 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
{
"name": "csv2json",
"version": "2.0.2",
"license": "ISC",
"description": "Stream and CLI to convert CSV to JSON",
"keywords": [
"csv",
"json",
"csv2json",
"csvtojson",
"stream"
],
"homepage": "https://github.com/julien-f/csv2json",
"bugs": "https://github.com/julien-f/csv2json/issues",
"repository": {
"type": "git",
"url": "https://github.com/julien-f/csv2json.git"
},
"author": {
"name": "Julien Fontanet",
"email": "[email protected]"
},
"preferGlobal": false,
"bin": {
"csv2json": "cli.js"
},
"files": [
"*.js"
],
"dependencies": {
"csv-parser": "^2.3.0",
"exec-promise": "^0.7.0",
"minimist": "^1.2.0",
"promise-toolbox": "^0.15.0",
"pump": "^3.0.0",
"pumpify": "^2.0.0",
"strip-bom-stream": "^4.0.0",
"through2": "^3.0.1"
},
"devDependencies": {
"husky": "^4.2.3",
"standard": "^14.1.0"
},
"scripts": {
"test": "standard"
},
"jest": {
"testRegex": "\\.spec\\.js$"
},
"husky": {
"hooks": {
"commit-msg": "npm run test"
}
}
}