-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
84 lines (84 loc) · 1.89 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "csv-string",
"version": "4.1.1",
"description": "PARSE and STRINGIFY for CSV strings. It's like JSON object but for CSV. It can also work row by row. And, if can parse strings, it can be use to parse files or streams too.",
"keywords": [
"csv",
"parser",
"string",
"generator"
],
"repository": {
"type": "git",
"url": "https://github.com/Inist-CNRS/node-csv-string"
},
"license": "MIT",
"author": "Nicolas Thouvenin <[email protected]>",
"contributors": [
{
"name": "Mehul Mohan",
"url": "https://github.com/mehulmpt"
},
{
"name": "Hossam Magdy",
"url": "https://github.com/hossam-magdy"
},
{
"name": "Rich",
"url": "https://github.com/rich-TIA"
},
{
"name": "Stéphane Gully",
"url": "https://github.com/kerphi"
},
{
"name": "J Baumbach",
"url": "https://github.com/jbaumbach"
},
{
"name": "Sam Hauglustaine",
"url": "https://github.com/smhg"
},
{
"name": "Rick Huizinga",
"url": "https://github.com/rickhuizinga"
},
{
"name": "François Parmentier",
"url": "https://github.com/parmentf"
}
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"build": "rm -rf ./dist && tsc",
"lint": "eslint --ext js,ts .",
"test": "jest --coverage",
"bench": "./bench/_bench.sh",
"preversion": "npm run build",
"postversion": "git push && git push --tags"
},
"dependencies": {},
"devDependencies": {
"@types/jest": "^25.1.4",
"@types/mocha": "^7.0.2",
"@types/node": "^13.9.5",
"@typescript-eslint/eslint-plugin": "^2.25.0",
"@typescript-eslint/parser": "^2.25.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.1.2",
"jest": "^25.2.3",
"prettier": "^2.0.2",
"ts-jest": "^25.2.1",
"ts-node": "^8.8.1",
"typescript": "^3.8.3"
},
"engines": {
"node": ">=12.0"
}
}