-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.14 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "json-csv-transformer",
"version": "3.0.2",
"description": "transform json to csv, and vice versa",
"main": "lib/index.js",
"module": "es/index.js",
"scripts": {
"test": "jest",
"prebuild": "npm run test",
"build": "npm run build:es && npm run build:cjs",
"build:es": "babel src -d es",
"build:cjs": "BABEL_ENV=commonjs babel src -d lib",
"pretest": "npm run flow",
"lint": "eslint ./src",
"lint:fix": "eslint ./src --fix",
"preflow": "npm run lint",
"flow": "flow",
"prepare": "npm run build",
"preversion": "npm run build",
"coverage": "cat ./coverage/lcov.info | coveralls",
"doc": "esdoc2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kagawagao/json-csv-transformer.git"
},
"keywords": [
"json",
"csv",
"csv2json",
"json2csv",
"csv-parser",
"json-parser",
"json-to-csv"
],
"author": {
"name": "kagawagao",
"email": "[email protected]",
"url": "https://kingsongao.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/kagawagao/json-csv-transformer/issues"
},
"homepage": "https://github.com/kagawagao/json-csv-transformer#readme",
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-transform-runtime": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/preset-flow": "^7.0.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"babel-plugin-add-module-exports": "^1.0.2",
"eslint": "^6.2.2",
"eslint-config-prettier": "^6.1.0",
"eslint-config-standard": "^14.0.1",
"eslint-plugin-flowtype": "^3.13.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"flow-bin": "^0.106.2",
"jest": "^24.9.0",
"prettier": "^1.18.2"
},
"dependencies": {
"@babel/runtime": "^7.5.5",
"iconv-lite": "^0.5.0",
"jschardet": "^2.1.0"
},
"engines": {
"node": ">= 8.0.0",
"npm": ">= 5.0.0"
}
}