-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.45 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.45 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
67
68
69
70
71
72
73
74
75
76
77
{
"name": "js-utils",
"version": "0.0.0",
"description": "Useful, general JavaScript utilities",
"repository": {
"type": "git",
"url": "https://github.com/codibre/js-utils"
},
"private": true,
"scripts": {
"build": "turbo build",
"build:force": "turbo build --force",
"lint": "turbo lint",
"lint:fix": "turbo lint:fix --concurrency=1",
"lint:staged": "turbo lint:staged --concurrency=1",
"prettier": "turbo prettier --concurrency=1",
"prettier:fix": "turbo prettier:fix --concurrency=1",
"patch": "npm version patch -m \"release: version %s\" && git push --tags && git push",
"test": "turbo test",
"pretest:cov": "pnpm run build && rimraf lcov.info",
"test:cov": "turbo test:cov --concurrency=1",
"posttest:cov": "rimraf coverage && mkdir -p coverage && npx lcov-result-merger 'libs/**/coverage/lcov.info' coverage/lcov.info --prepend-source-files",
"commit:validate": "pnpm exec commitlint --from HEAD~1 --to HEAD --verbose",
"commit:examples": "node scripts/commit-examples.js",
"prepare": "husky",
"prebenchmark": "pnpm build",
"benchmark:js-tuple": "cd libs/js-tuple && node benchmark/run-all.js"
},
"release": {
"branches": [
"main"
]
},
"keywords": [],
"engines": {
"node": "22"
},
"author": "Codibre",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@nestjs/cli": "^11.0.10",
"@stylistic/eslint-plugin": "^5.3.1",
"@types/jest": "^30.0.0",
"@types/ms": "^2.1.0",
"@types/node": "^24.3.1",
"@types/supertest": "^6.0.3",
"@typescript-eslint/eslint-plugin": "^8.42.0",
"@typescript-eslint/parser": "^8.42.0",
"benchmark": "^2.1.4",
"eslint": "^9.35.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-unused-imports": "^4.2.0",
"globals": "^16.3.0",
"husky": "^9.1.7",
"jest": "^30.1.3",
"jest-callslike": "^0.2.1",
"jest-extended": "^6.0.0",
"jest-mock": "^30.0.5",
"jest-stub-super-constructor": "^0.3.0",
"lcov-result-merger": "^5.0.1",
"lint-staged": "^16.1.6",
"prettier": "^3.6.2",
"rimraf": "^6.0.1",
"ts-jest": "^29.4.1",
"ts-loader": "^9.5.4",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"tsconfig-paths-hook": "^0.1.2",
"tsup": "^8.5.0",
"turbo": "^2.5.6",
"typescript": "^5.9.2"
},
"packageManager": "pnpm@10.15.1"
}