-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 945 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": "csvlint",
"version": "0.0.0",
"description": "A Node package to support validating CSV files to check their syntax and contents. You can either use this package within your own JavaScript code, or as a standalone command line application.",
"main": "lib/index.js",
"scripts": {
"test": "mocha --recursive",
"lint": "standard"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jezhiggins/csvlint.js.git"
},
"author": "Jez Higgins, Jez UK Ltd",
"license": "MIT",
"bugs": {
"url": "https://github.com/jezhiggins/csvlint.js/issues"
},
"homepage": "https://github.com/jezhiggins/csvlint.js#readme",
"devDependencies": {
"chai": "^4.2.0",
"dirty-chai": "^2.0.1",
"mocha": "^7.1.2",
"nock": "^12.0.3",
"standard": "^14.3.3"
},
"dependencies": {
"csv-parse": "^4.9.0",
"luxon": "^1.24.1",
"node-fetch": "^2.6.0",
"xregexp": "^4.3.0"
}
}