-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.1 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.1 KB
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
{
"name": "breadroll",
"version": "0.5.1",
"description": "breadroll 🥟 is an intuitive lightweight library for type-safe data processing, designed with type-safety, developer experience and reduced runtime errors in mind",
"author": {
"name": "devsgnr",
"url": "https://github.com/devsgnr",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/devsgnr"
},
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/devsgnr"
},
"bugs": "https://github.com/devsgnr/breadroll/issues",
"homepage": "https://breadrolljs.vercel.app",
"license": "MIT",
"keywords": [
"bun",
"data-engineering",
"csv",
"tsv",
"csv-parser",
"tsv-parser",
"eda",
"data-science",
"data-transformation"
],
"main": "./dist/index.js",
"module": "./dist/index.js",
"devDependencies": {
"@types/lodash": "^4.17.0",
"@typescript-eslint/eslint-plugin": "^6.1.0",
"@typescript-eslint/parser": "^6.1.0",
"bun-types": "^0.6.0",
"eslint": "^8.45.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"prettier": "3.0.0",
"rimraf": "^5.0.7",
"typescript": "5.1.6"
},
"peerDependencies": {
"typescript": "5.1.6"
},
"files": [
"dist"
],
"lint-staged": {
"*.ts": "eslint --cache --fix"
},
"scripts": {
"prepare": "husky install",
"test:ci": "bun test ./test/bun.test.ts ./test/df.test.ts ./test/supabase.test.ts",
"test:local": "bun test ./test/bun.test.ts ./test/df.test.ts",
"build:pre-build": "bun test:local && bun run build.ts && bunx tsc",
"build:unix": "rm -rf dist && bun run build.ts && bunx tsc && bun test ./test/build.test.js",
"build:windows": "bunx rimraf dist && bun run build.ts && bunx tsc",
"build:stable": "bunx rimraf dist && bun run build.ts && bunx tsc && bun test:ci"
},
"type": "module",
"types": "./dist/index.d.ts",
"dependencies": {
"@supabase/supabase-js": "^2.39.3",
"braces": "^3.0.3",
"csv-parser": "^3.0.0",
"lodash": "^4.17.21",
"neat-csv": "^7.0.0"
}
}