-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
45 lines (45 loc) · 1004 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
43
44
45
{
"name": "excel-to-json-parser",
"version": "1.0.11",
"description": "Convert Excel to JSON",
"main": "index.js",
"bin": {
"etj": "./bin/index.js"
},
"dependencies": {
"chalk": "^5.0.1",
"commander": "^9.2.0",
"inquirer": "^8.2.4",
"node-xlsx": "^0.21.0",
"open": "^7.0.3"
},
"devDependencies": {
"eslint": "^8.15.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.6.2"
},
"scripts": {
"example": "yarn && node ./bin/index.js -s ./examples/example.xlsx",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"excel",
"json",
"excel-to-json"
],
"author": {
"name": "Aaron Lam",
"email": "[email protected]"
},
"bugs": {
"url": "https://github.com/Aaronlamz/excel-to-json/issues"
},
"homepage": "https://github.com/Aaronlamz/excel-to-json#readme",
"files": [
"bin/*.js",
"src",
"README.md"
],
"license": "MIT"
}