-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 897 Bytes
/
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
{
"name": "j2e",
"version": "1.3.0",
"description": "CLI tool for converting json to excel and vice versa ",
"main": "bin/index.js",
"bin": {
"j2e": "./bin/index.js"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "jest",
"publish:npm": "npm publish --access public",
"start": "node bin/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mshahulpm/j2e.git"
},
"keywords": [
"cli",
"json",
"excel",
"json-to-excel",
"excel-to-json"
],
"author": "Mohammed Shahul",
"license": "ISC",
"bugs": {
"url": "https://github.com/mshahulpm/j2e/issues"
},
"homepage": "https://github.com/mshahulpm/j2e#readme",
"dependencies": {
"chalk": "4.1.2",
"commander": "^9.5.0",
"exceljs": "^4.3.0",
"figlet": "^1.5.2",
"inquirer": "^8.0.0",
"ora": "5.4.1"
}
}