-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
56 lines (56 loc) · 1.6 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
49
50
51
52
53
54
55
56
{
"name": "rxjs-collection",
"version": "0.0.0",
"description": "collection of rxjs helpers",
"license": "MIT",
"contributors": [
{
"name": "Stephan Gerbeth",
"email": "[email protected]"
}
],
"type": "module",
"repository": {
"type": "git",
"url": "git+https://github.com/basics/rxjs-collection.git"
},
"scripts": {
"lint": "npm run lint:es",
"lint:es": "eslint --fix .",
"prepare": "husky",
"release": "npm run release --workspaces",
"release:proof": "npx dotenv-cli -- npm run release -- -- --dry-run",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"workspaces": [
"packages/operators",
"packages/observables"
],
"devDependencies": {
"@commitlint/config-conventional": "19.5.0",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/commit-analyzer": "13.0.0",
"@semantic-release/git": "10.0.1",
"@semantic-release/github": "11.0.0",
"@semantic-release/npm": "12.0.1",
"@semantic-release/release-notes-generator": "14.0.1",
"@vitest/coverage-v8": "2.1.3",
"commitlint": "19.5.0",
"eslint": "9.13.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-no-secrets": "1.0.2",
"eslint-plugin-perfectionist": "3.9.1",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-security": "3.0.1",
"eslint-plugin-vitest": "0.5.4",
"fetch-mock": "12.0.0",
"happy-dom": "15.7.4",
"husky": "9.1.6",
"lint-staged": "15.2.10",
"prettier": "3.3.3",
"semantic-release": "24.1.3",
"semantic-release-monorepo": "8.0.2",
"vitest": "2.1.3"
}
}