-
Notifications
You must be signed in to change notification settings - Fork 217
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 2.08 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 2.08 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
{
"name": "fast-csv",
"private": true,
"overrides": {
"copy-webpack-plugin": "14.0.0",
"css-minimizer-webpack-plugin": "8.0.0"
},
"scripts": {
"clean": "lerna run clean",
"build": "lerna run build",
"lerna:pub": "lerna publish from-git",
"lerna:version": "lerna version",
"release": "npm run build && npm run lerna:version && npm run lerna:pub",
"test": "npm run lint && npm run jest && npm run examples",
"format": "prettier --write \"**/*.{ts,js,json,md,mdx,css}\" --ignore-path .prettierignore",
"format:check": "prettier --check \"**/*.{ts,js,json,md,mdx,css}\" --ignore-path .prettierignore",
"lint": "eslint --max-warnings 0 \"**/*.ts\" \"examples/**/examples/**/*.js\"",
"lint:fix": "eslint --max-warnings 0 \"**/*.ts\" \"examples/**/examples/**/*.js\" --fix",
"lint:ts": "eslint --max-warnings 0 \"**/*.ts\"",
"lint:js": "eslint --max-warnings 0 \"examples/**/examples/**/*.js\"",
"jest": "jest --runInBand --coverage",
"examples": "npm run all-examples --ws",
"benchmarks": "npm run benchmarks --ws"
},
"repository": {
"type": "git",
"url": "git@github.com:C2FO/fast-csv.git"
},
"workspaces": [
"packages/*",
"examples/*",
"documentation"
],
"devDependencies": {
"@commitlint/cli": "20.5.3",
"@commitlint/config-angular": "20.5.3",
"@eslint/js": "^9.39.2",
"@types/jest": "30.0.0",
"@typescript-eslint/eslint-plugin": "8.58.2",
"@typescript-eslint/parser": "8.58.2",
"eslint": "9.39.4",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-jest": "29.15.2",
"eslint-plugin-prettier": "5.5.5",
"eslint-plugin-tsdoc": "0.5.2",
"globals": "^17.2.0",
"husky": "9.1.7",
"jest": "30.3.0",
"lerna": "9.0.7",
"prettier": "3.8.3",
"ts-jest": "29.4.9",
"typescript": "5.9.3",
"typescript-eslint": "^8.54.0"
}
}