UNPKG

883 BJSONView Raw
1{
2 "name": "ceseve",
3 "version": "1.0.5",
4 "description": "Convert arrays of data to CSV files",
5 "main": "index.js",
6 "scripts": {
7 "lint": "eslint .",
8 "coverage": "jest --coverage",
9 "test": "jest"
10 },
11 "repository": {
12 "type": "git",
13 "url": "git@github:carlosazaustre/ceseve.git"
14 },
15 "keywords": [
16 "csv",
17 "parser",
18 "parse",
19 "tab",
20 "delimiter",
21 "separator",
22 "comma",
23 "tab",
24 "values",
25 "separated",
26 "string",
27 "text"
28 ],
29 "author": "Carlos Azaustre <cazaustre@gmail.com> (https://carlosazaustre.es)",
30 "license": "MIT",
31 "devDependencies": {
32 "eslint-config-airbnb-base": "^13.1.0",
33 "eslint-plugin-import": "^2.16.0",
34 "eslint": "^5.16.0",
35 "husky": "^1.3.1",
36 "jest": "^24.5.0"
37 },
38 "husky": {
39 "hooks": {
40 "pre-commit": "npm run lint",
41 "pre-push": "npm test"
42 }
43 }
44}