forked from lukaswagner/csv-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.22 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
{
"name": "csv-parser",
"version": "1.0.0",
"private": true,
"description": "Multi-threaded CSV parser using web workers.",
"workspaces": [
"apps/*",
"packages/*"
],
"type": "module",
"scripts": {
"format": "prettier --write \"{apps,packages,scripts}/**/*.{ts,tsx,json,js}\"",
"lint": "eslint ./apps ./packages",
"lint-fix": "eslint ./apps ./packages --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lukaswagner/csv-parser.git"
},
"keywords": [
"csv"
],
"author": "Lukas Wagner",
"license": "MIT",
"bugs": {
"url": "https://github.com/lukaswagner/csv-parser/issues"
},
"homepage": "https://github.com/lukaswagner/csv-parser#readme",
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0",
"npm": ">=7.0.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"concurrently": "^7.0.0",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "~2.5.1",
"typescript": "^4.6.2"
}
}