-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
62 lines (62 loc) · 1.89 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
57
58
59
60
61
62
{
"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",
"test:ui": "vitest --ui",
"test:project:observables": "vitest --project packages/observables",
"test:project:operators": "vitest --project packages/operators",
"test:project:playground": "vitest --project packages/playground",
"coverage": "vitest run --coverage"
},
"workspaces": [
"packages/operators",
"packages/observables",
"packages/playground"
],
"devDependencies": {
"@commitlint/config-conventional": "19.6.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.1",
"@semantic-release/npm": "12.0.1",
"@semantic-release/release-notes-generator": "14.0.1",
"@vitest/coverage-v8": "2.1.5",
"@vitest/eslint-plugin": "1.1.10",
"@vitest/ui": "^2.1.5",
"commitlint": "19.6.0",
"eslint": "9.15.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-no-secrets": "1.1.2",
"eslint-plugin-perfectionist": "4.0.3",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-security": "3.0.1",
"fetch-mock": "12.2.0",
"happy-dom": "15.11.6",
"husky": "9.1.7",
"lint-staged": "15.2.10",
"prettier": "3.3.3",
"semantic-release": "24.2.0",
"semantic-release-monorepo": "8.0.2",
"vitest": "^2.1.5"
}
}