-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 973 Bytes
/
Copy pathpackage.json
File metadata and controls
44 lines (44 loc) · 973 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
35
36
37
38
39
40
41
42
43
44
{
"name": "fast-csv",
"version": "4.3.6",
"description": "CSV parser and writer",
"main": "./build/src/index.js",
"types": "./build/src/index.d.ts",
"scripts": {
"prepublishOnly": "npm run build",
"build": "npm run clean && npm run compile",
"clean": "rm -rf ./build && rm -rf tsconfig.tsbuildinfo",
"compile": "tsc"
},
"directories": {
"lib": "src",
"test": "__tests__"
},
"files": [
"build/src/**"
],
"repository": {
"type": "git",
"url": "git+https://github.com/C2FO/fast-csv.git",
"directory": "packages/fast-csv"
},
"keywords": [
"csv",
"parser",
"fast",
"writer",
"csv writer",
"CSV"
],
"homepage": "http://c2fo.github.com/fast-csv",
"author": "Doug Martin",
"license": "MIT",
"engines": {
"node": ">=10.0.0"
},
"dependencies": {
"@fast-csv/format": "4.3.5",
"@fast-csv/parse": "4.3.6"
},
"gitHead": "3dc859edb19924b315051e4c87d6273808a0de73"
}