-
Notifications
You must be signed in to change notification settings - Fork 211
/
package.json
48 lines (48 loc) · 1.47 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
{
"name": "fast-csv",
"private": true,
"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",
"lint": "npm run lint:ts && npm run lint:js",
"lint:fix": "npm run lint:ts -- --fix && npm run lint:js -- --fix",
"lint:ts": "eslint --ext=.ts .",
"lint:js": "eslint --ext=.js ./examples/**/examples/**/*.js",
"jest": "jest --runInBand --coverage",
"examples": "npm run all-examples --ws",
"benchmarks": "npm run benchmarks --ws"
},
"repository": {
"type": "git",
"url": "[email protected]:C2FO/fast-csv.git"
},
"workspaces": [
"packages/*",
"examples/*",
"documentation"
],
"devDependencies": {
"@commitlint/cli": "19.5.0",
"@commitlint/config-angular": "19.5.0",
"@types/jest": "29.5.14",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"eslint": "8.57.1",
"eslint-config-airbnb-typescript": "17.1.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jest": "28.9.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-tsdoc": "0.3.0",
"husky": "9.1.6",
"jest": "29.7.0",
"lerna": "8.1.9",
"prettier": "3.3.3",
"ts-jest": "29.2.5",
"typescript": "5.6.3"
}
}