-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.28 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
{
"name": "json2csv-cli",
"version": "1.3.2",
"description":
"CLI that transform a JSON to CSV with Key,Value format. Usefull to list all keys from a json object.",
"main": "./lib/main.js",
"bin": {
"j2c": "./index.js"
},
"scripts": {
"build":
"BABEL_ENV=production ./node_modules/.bin/babel ./src/ --out-dir lib/",
"dev":
"BABEL_ENV=development ./node_modules/.bin/babel --watch ./src/ --out-dir lib/",
"test":
"./node_modules/.bin/eslint src/ && ./node_modules/.bin/jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PaulRosset/jsonTocsv.git"
},
"keywords": ["node", "json", "csv", "js", "cli"],
"author": "Paul Rosset <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/PaulRosset/jsonTocsv/issues"
},
"homepage": "https://github.com/PaulRosset/jsonTocsv#readme",
"dependencies": {
"chalk": "2.0.1",
"commander": "2.11.0",
"lodash": "4.17.4"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-preset-es2015": "6.24.1",
"babel-preset-stage-0": "6.24.1",
"eslint": "^4.19.1",
"eslint-plugin-prettier": "^2.6.0",
"jest": "^22.4.3",
"papaparse": "^4.3.7",
"prettier": "^1.11.1"
}
}