-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
52 lines (52 loc) · 1.25 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
51
52
{
"name": "csv-transpose",
"description": "Transpose (rotate) data from rows to columns or vice verse in csv",
"version": "1.2.0",
"main": "lib/core.js",
"types": "lib/core.d.ts",
"bin": {
"csv-transpose": "./csv-transpose",
"tsv-transpose": "./tsv-transpose"
},
"scripts": {
"test": "tsc -p . --noEmit",
"clean": "rimraf dist",
"tsc": "tsc -p .",
"bundle": "esbuild --bundle --platform=node lib/core.ts --outfile=lib/core.js",
"build": "run-s clean tsc bundle"
},
"keywords": [
"csv",
"tsv",
"transpose",
"cli",
"cmd",
"utils"
],
"author": "Beeno Tung",
"license": "BSD-2-Clause",
"files": [
"./cli/main.js",
"./cli/main.d.ts",
"./lib/core.js",
"./lib/core.d.ts"
],
"devDependencies": {
"@beenotung/tslib": "^18.0.0",
"@types/node": "^17.0.21",
"esbuild": "^0.14.23",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"ts-node": "^10.5.0",
"ts-node-dev": "^1.1.8",
"typescript": "^4.5.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/beenotung/csv-transpose.git"
},
"bugs": {
"url": "https://github.com/beenotung/csv-transpose/issues"
},
"homepage": "https://github.com/beenotung/csv-transpose#readme"
}