-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1.03 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
{
"name": "csv-2-jsonl",
"bin": {
"csv2jsonl": "./bin/index.js"
},
"version": "2.0.0",
"description": "small csv to json-lines parser with no dependencies",
"main": "index.js",
"scripts": {
"test": "nyc --all mocha --exit --recursive",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/erikwlarsen/csv-to-jsonl.git"
},
"author": "erik.w.larsen",
"license": "ISC",
"bugs": {
"url": "https://github.com/erikwlarsen/csv-to-jsonl/issues"
},
"devDependencies": {
"chai": "4.2.0",
"eslint": "^5.13.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-jsx-a11y": "^6.2.1",
"eslint-plugin-mocha": "5.3.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-react": "^7.12.4",
"eslint-plugin-standard": "^4.0.0",
"mocha": "6.1.4",
"nyc": "^14.0.0"
},
"homepage": "https://github.com/erikwlarsen/csv-to-jsonl#readme"
}