-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 829 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 829 Bytes
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
{
"name": "csvalid",
"version": "0.0.1",
"description": "Parses a CSV file and ensures that not only is it valid CSV, but the data in each column fits a defined schema.",
"main": "index.js",
"bin": {
"csvalid": "index.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node index.js"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/futurefirst/csvalid.git"
},
"keywords": [
"csv",
"validation",
"parse",
"regex",
"data"
],
"author": "David Knoll <david.knoll@futurefirst.org.uk>",
"license": "MIT",
"bugs": {
"url": "https://github.com/futurefirst/csvalid/issues"
},
"homepage": "https://github.com/futurefirst/csvalid#readme",
"dependencies": {
"csv": "^5.1.1",
"yargs": "^13.2.2"
}
}