UNPKG

1.65 kBJSONView Raw
1{
2 "author": {
3 "name": "Mike Rodrigues",
4 "email": "rodrigues.mi@northeastern.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.8.0",
9 "homepage": "https://mrodrig.github.io/json-2-csv",
10 "repository": {
11 "type": "git",
12 "url": "https://github.com/mrodrig/json-2-csv.git"
13 },
14 "bugs": {
15 "url": "https://github.com/mrodrig/json-2-csv/issues"
16 },
17 "main": "lib/converter.js",
18 "types": "./lib/converter.d.ts",
19 "scripts": {
20 "test": "mocha test/tests.js",
21 "coverage": "nyc --reporter=lcov --reporter=text-summary --reporter=text _mocha",
22 "coveralls": "nyc report --reporter=text-lcov | coveralls",
23 "lint": "npm run lint:eslint && npm run lint:tslint",
24 "lint:eslint": "eslint lib test",
25 "lint:tslint": "tslint -c tslint.json 'lib/**/*.ts'"
26 },
27 "keywords": [
28 "json",
29 "to",
30 "csv",
31 "converter",
32 "export",
33 "json2csv",
34 "csv2json",
35 "parse",
36 "parser",
37 "json-2-csv",
38 "csv-2-json",
39 "cli"
40 ],
41 "dependencies": {
42 "deeks": "2.2.7",
43 "doc-path": "2.2.0"
44 },
45 "devDependencies": {
46 "babel-eslint": "10.1.0",
47 "coveralls": "3.1.0",
48 "eslint": "7.14.0",
49 "mocha": "8.2.1",
50 "nyc": "15.1.0",
51 "should": "13.2.3",
52 "tslint": "6.1.3",
53 "typescript": "4.1.2"
54 },
55 "engines": {
56 "node": ">= 10"
57 },
58 "license": "MIT"
59}