-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
63 lines (63 loc) · 1.3 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
{
"name": "csval",
"version": "2.0.0",
"description": "Check CSV files against a set of validation rules.",
"exports": "./src/index.js",
"scripts": {
"test": "mocha",
"lint": "eslint ./**/*.js",
"lint:fix": "eslint --fix ./**/*.js"
},
"author": "Travis Horn <[email protected]> (https://travishorn.com)",
"repository": {
"type": "git",
"url": "git+https://github.com/travishorn/csval.git"
},
"bugs": {
"url": "https://github.com/travishorn/csval/issues"
},
"homepage": "https://github.com/travishorn/csval#readme",
"license": "MIT",
"type": "module",
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"bin": {
"csval": "./src/cli.js"
},
"files": [
"./src/"
],
"keywords": [
"cli",
"comma",
"command",
"csv",
"data",
"delimited",
"file",
"joi",
"json",
"json-schema",
"parse",
"parser",
"parsing",
"schema",
"valid",
"validation"
],
"devDependencies": {
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"mocha": "^10.2.0",
"prettier": "^2.8.3"
},
"dependencies": {
"ajv": "^8.12.0",
"commander": "^10.0.0",
"papaparse": "^5.3.2"
}
}