-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
46 lines (46 loc) · 1.1 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
{
"name": "csv-file-validator",
"version": "2.2.0",
"description": "Validation of CSV file against user defined schema (returns back object with data and invalid messages)",
"main": "./src/csv-file-validator.js",
"types": "./src/csv-file-validator.d.ts",
"repository": "https://github.com/shystruk/csv-file-validator.git",
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"directories": {
"src": "src"
},
"scripts": {
"report-coverage": "cat ./coverage/lcov.info | codecov",
"coverage": "nyc report --reporter=lcov",
"test": "nyc ava --browser && npm run coverage && tsd"
},
"keywords": [
"csv parser",
"parser",
"validator",
"csv validator",
"csv file validator",
"reviewer",
"csv reviewer"
],
"author": {
"name": "Vasyl Stokolosa",
"email": "[email protected]",
"url": "https://github.com/shystruk"
},
"license": "MIT",
"dependencies": {
"famulus": "^2.2.3",
"lodash": "^4.17.21",
"papaparse": "^5.4.1"
},
"devDependencies": {
"@types/papaparse": "^5.3.15",
"ava": "^0.25.0",
"codecov.io": "^0.1.6",
"nyc": "^11.4.1",
"tsd": "^0.17.0"
}
}