-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.26 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.26 KB
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "terminal-csv-splitter",
"description": "A CSV splitter that uses inbuilt terminal commands to run super fast!",
"version": "2.0.1",
"author": "Kerren @Kerren-Entrostat",
"bin": {
"terminal-csv-splitter": "./bin/run"
},
"bugs": "https://github.com/entrostat/terminal-csv-splitter/issues",
"dependencies": {
"@oclif/command": "^1.8.0",
"@oclif/config": "^1.17.0",
"@oclif/plugin-help": "^3.2.3",
"fs-extra": "^10.0.0",
"promax": "^3.1.0",
"tslib": "^2.3.1",
"uuid": "^8.3.2"
},
"devDependencies": {
"@oclif/dev-cli": "^1.26.0",
"@oclif/test": "^1.2.8",
"@types/chai": "^4.2.22",
"@types/mocha": "^9.0.0",
"@types/node": "^16.10.1",
"@types/uuid": "^8.3.1",
"chai": "^4.3.4",
"entro-version": "^1.5.0",
"eslint": "^7.32.0",
"eslint-config-oclif": "^4.0.0",
"eslint-config-oclif-typescript": "^1.0.2",
"mocha": "^9.1.2",
"nyc": "^15.1.0",
"prettier": "^2.4.1",
"standard-version": "^9.3.1",
"ts-node": "^10.2.1",
"typescript": "^4.4.3"
},
"engines": {
"node": ">=11.0.0"
},
"files": [
"/bin",
"/lib"
],
"homepage": "https://github.com/entrostat/terminal-csv-splitter",
"keywords": [
"oclif",
"cli",
"csv",
"split",
"splitter",
"large",
"huge",
"files",
"big",
"header",
"file",
"terminal"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"bin": "terminal-csv-splitter"
},
"repository": "entrostat/terminal-csv-splitter",
"scripts": {
"posttest": "eslint . --ext .ts --config .eslintrc",
"prepack": "rm -rf lib && tsc -b && oclif-dev readme",
"test": "nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"",
"version": "oclif-dev readme && git add README.md",
"release": "entro-version --during-release-post-hook=\"npm run pack && npm publish\"",
"pack": "oclif-dev pack",
"pack:deb": "sudo oclif-dev pack:deb",
"build:release": "npm run pack && npm run pack:deb"
},
"types": "lib/index.d.ts"
}