-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 854 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
{
"name": "NodeJS CSV Toolkit",
"version": "1.0.0",
"description": "NodeJS CSV Toolkit - CLI tool to work with CSV files",
"main": "app.js",
"scripts": {
"start": "nodemon src/app.js",
"test": "jasmine",
"doc": "jsdoc -c jsdoc.conf.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/serge-mugisha/NodeJS-CSV-Toolkit.git"
},
"author": "Serge Mugisha",
"license": "ISC",
"bugs": {
"url": "https://github.com/serge-mugisha/NodeJS-CSV-Toolkit/issues"
},
"homepage": "https://github.com/serge-mugisha/NodeJS-CSV-Toolkit#readme",
"dependencies": {
"asciichart": "^1.5.25",
"csv-parse": "^5.0.4",
"csv-stringify": "^6.0.5",
"ervy": "^1.0.7",
"jsdoc": "^3.6.10",
"nodemon": "^2.0.15",
"prompt": "^1.2.1"
},
"devDependencies": {
"jasmine": "^4.0.2"
}
}