-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
38 lines (38 loc) · 1.15 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": "json-converter",
"main": "./lib/json-converter",
"version": "0.2.4",
"description": "Convert csv to json, json to csv, and more.",
"keywords": [
"csv",
"json",
"yaml",
"elasticsearch",
"converter"
],
"activationCommands": {
"atom-workspace": [
"json-converter:csv-to-elasticsearch-bulk-create-format",
"json-converter:csv-to-elasticsearch-bulk-delete-format",
"json-converter:csv-to-elasticsearch-bulk-index-format",
"json-converter:csv-to-elasticsearch-bulk-update-format",
"json-converter:json-to-elasticsearch-bulk-create-format",
"json-converter:json-to-elasticsearch-bulk-delete-format",
"json-converter:json-to-elasticsearch-bulk-index-format",
"json-converter:json-to-elasticsearch-bulk-update-format",
"json-converter:csv-to-json",
"json-converter:json-to-csv",
"json-converter:json-to-yaml",
"json-converter:yaml-to-json"
]
},
"repository": "https://github.com/KunihikoKido/atom-json-converter",
"license": "MIT",
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"dependencies": {
"json-2-csv": "^2.0.12",
"js-yaml": "^3.5.2"
}
}