-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 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
46
47
48
49
50
{
"name": "xlsx-to-csv-cli",
"version": "0.1.2",
"description": "Interactive command line interface to export CSV files from an Excel workbook",
"scripts": {
"start": "tsc && node build/cli.js",
"build": "tsc --outDir dist",
"lint": "npm run lint:eslint && npm run lint:prettier",
"lint:eslint": "eslint --fix 'src/**/*.ts'",
"lint:prettier": "prettier --write src"
},
"bin": {
"xlsx-to-csv": "dist/cli.js"
},
"files": [
"dist/**/*.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/rbb-data/xlsx-to-csv-cli.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/rbb-data/xlsx-to-csv-cli/issues"
},
"homepage": "https://github.com/rbb-data/xlsx-to-csv-cli#readme",
"dependencies": {
"chalk": "^4.1.2",
"inquirer": "^8.2.0",
"inquirer-fuzzy-path": "^2.3.0",
"xlsx": "^0.17.3"
},
"devDependencies": {
"@types/inquirer": "^8.1.3",
"@types/inquirer-fuzzy-path": "^2.3.3",
"@types/node": "^16.11.5",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"eslint": "^8.1.0",
"eslint-config-prettier": "^8.3.0",
"prettier": "2.4.1",
"typescript": "^4.4.4"
},
"keywords": [
"excel",
"xlsx",
"csv",
"cli"
]
}