-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.7 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.7 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
{
"name": "csv-streamy-monorepo",
"private": true,
"workspaces": [
"packages/*"
],
"type": "module",
"author": "keidrun",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/github": "^8.0.5",
"@semantic-release/npm": "^9.0.1",
"@semantic-release/release-notes-generator": "^10.0.3",
"@tsconfig/node16-strictest-esm": "^1.0.3",
"@types/glob": "^7.2.0",
"@types/globby": "^9.1.0",
"@types/node": "^18.6.2",
"@typescript-eslint/eslint-plugin": "^5.31.0",
"@typescript-eslint/parser": "^5.31.0",
"c8": "^7.12.0",
"cz-conventional-changelog": "^3.3.0",
"dirfilename": "^1.0.6",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"globby": "^13.1.2",
"husky": "^8.0.1",
"is-ci": "^3.0.1",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"semantic-release": "^19.0.3",
"semantic-release-monorepo": "^7.0.5",
"ts-node": "^10.9.1",
"tsup": "^6.2.0",
"typescript": "^4.7.4",
"vitest": "^0.19.1"
},
"scripts": {
"prepare": "is-ci || husky install",
"lint": "eslint . --cache --fix --ext js,ts",
"format": "prettier --write '**/*.{js,ts,json}'",
"test": "vitest run --coverage --passWithNoTests"
},
"lint-staged": {
"*.{js,ts}": [
"npm run lint",
"npm run format",
"npm run test"
]
},
"release": {
"extends": "semantic-release-monorepo"
},
"engines": {
"node": ">=16.0.0"
},
"packageManager": "npm@8.5.0",
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
}
}