UNPKG

1.5 kBJSONView Raw
1{
2 "author": {
3 "name": "Mike Rodrigues",
4 "email": "rodrigues.mi@husky.neu.edu"
5 },
6 "name": "json-2-csv",
7 "description": "A JSON to CSV and CSV to JSON converter that natively supports sub-documents and auto-generates the CSV heading.",
8 "version": "3.6.1",
9 "repository": {
10 "type": "git",
11 "url": "https://github.com/mrodrig/json-2-csv.git"
12 },
13 "bugs": {
14 "url": "https://github.com/mrodrig/json-2-csv/issues"
15 },
16 "main": "./src/converter.js",
17 "types": "./src/converter.d.ts",
18 "scripts": {
19 "test": "mocha test/tests.js",
20 "coverage": "nyc --reporter=lcov --reporter=text-summary --reporter=text _mocha",
21 "lint": "npm run lint:eslint && npm run lint:tslint",
22 "lint:eslint": "eslint src test",
23 "lint:tslint": "tslint -c tslint.json 'src/**/*.ts'"
24 },
25 "keywords": [
26 "json",
27 "to",
28 "csv",
29 "converter",
30 "export",
31 "json2csv",
32 "csv2json",
33 "parse",
34 "parser",
35 "json-2-csv",
36 "csv-2-json",
37 "cli"
38 ],
39 "dependencies": {
40 "deeks": "2.2.4",
41 "doc-path": "2.0.2"
42 },
43 "devDependencies": {
44 "babel-eslint": "10.1.0",
45 "eslint": "5.16.0",
46 "mocha": "6.1.4",
47 "nyc": "14.0.0",
48 "should": "13.2.3",
49 "tslint": "5.15.0",
50 "typescript": "3.4.4"
51 },
52 "engines": {
53 "node": ">= 8"
54 },
55 "license": "MIT"
56}