-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.04 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
{
"name": "@idac/csvtools",
"version": "0.2.0",
"description": "Tools for working with and analysing CSV files.",
"keywords": [
"csv",
"tsv",
"dsv",
"cli"
],
"preferGlobal": true,
"repository": {
"type": "git",
"url": "https://github.com/robations/csvtools.git"
},
"main": "src/project.js",
"scripts": {
"test": "jest",
"preversion": "grep \"\\[$npm_new_version\\]\" CHANGELOG.md > /dev/null || ( echo \"You need to add an entry in CHANGELOG.md for this version. ($npm_new_version)\" && false ) && yarn test"
},
"author": "",
"license": "ISC",
"dependencies": {
"@fast-csv/format": "^4.3.5",
"@fast-csv/parse": "^4.3.6",
"cli-table3": "^0.6.0",
"colors": "^1.1.2",
"dashdash": "^1.14.0",
"lodash": "^4.6.1",
"rxjs": "^7"
},
"engines": {
"node": ">=10"
},
"bin": {
"csvproject": "src/project.js",
"csvreport": "src/report.js"
},
"files": [
"src/*.js",
"!src/*.spec.js",
"!src/*.test.js"
],
"devDependencies": {
"jest": "^27.3.1"
}
}