-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathpackage.json
51 lines (51 loc) · 1.63 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
{
"name": "export-to-csv",
"version": "1.4.0",
"description": "Easily create CSV data from json collection",
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/alexcaza/export-to-csv.git"
},
"scripts": {
"build": "rm -rf output && bun build index.ts --outdir ./output --minify && tsc",
"watch": "rm -rf output && bun build index.ts --outdir ./output --minify --watch",
"e2e": "rm -rf integration/export-to-csv.js && bun run build && cp output/index.js integration/export-to-csv.js && playwright test",
"e2e-ci": "rm -rf integration/export-to-csv.js && bun run build && cp output/index.js integration/export-to-csv.js && bunx playwright install --with-deps && playwright test",
"e2e-server": "bunx http-server ./integration -p 3000",
"test": "bun test lib/__specs__/",
"format": "bunx prettier --write '.'",
"prepublishOnly": "bun run build",
"prepare": "bun run build"
},
"keywords": [
"export-to-csv",
"export-to-excel",
"csv",
"excel",
"libreoffice",
"openoffice",
"typescript",
"zero-dependencies"
],
"author": "alexcaza",
"email": "[email protected]",
"license": "MIT",
"bugs": {
"url": "https://github.com/alexcaza/export-to-csv/issues"
},
"exports": "./output/index.js",
"types": "./output/index.d.ts",
"engines": {
"node": "^v12.20.0 || >=v14.13.0"
},
"homepage": "https://github.com/alexcaza/export-to-csv#readme",
"devDependencies": {
"@playwright/test": "1.40.0",
"bun-types": "^1.0.28",
"http-server": "^14.1.1",
"prettier": "3.0.3",
"bun": "~1.0.28",
"typescript": "~5.3.3"
}
}