-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
65 lines (65 loc) · 1.54 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
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "csvdata",
"description": "Async npm module for Node JS that loads, writes, and checks data operating with CSV files.",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"coverage": "nyc report --reporter=text-lcov | coveralls",
"lint": "eslint .",
"semantic-release": "semantic-release",
"travis-deploy-once": "travis-deploy-once --pro",
"test": "npm run lint && nyc mocha",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "https://github.com/pensierinmusica/csvdata.git"
},
"homepage": "https://github.com/pensierinmusica/csvdata",
"bugs": {
"url": "https://github.com/pensierinmusica/csvdata/issues"
},
"keywords": [
"csv",
"data",
"parse",
"read",
"write",
"check",
"stream",
"async",
"promise"
],
"author": "Alessandro Zanardi",
"license": "MIT",
"engines": {
"node": ">=14.8.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"devDependencies": {
"chai": "^4.3.6",
"chai-as-promised": "^7.1.1",
"commitizen": "^1.0.4",
"coveralls": "^3.1.1",
"cz-conventional-changelog": "^3.0.1",
"eslint": "^8.12.0",
"husky": "^7.0.4",
"mocha": "^9.2.2",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"semantic-release": "^19.0.2"
},
"dependencies": {
"colors": "^1.4.0",
"commander": "^9.1.0",
"csv": "6.0.5",
"firstline": "^2.0.2",
"js-promisify": "^1.3.1",
"through": "^2.3.8"
},
"version": "0.0.0-development"
}