-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.73 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
63
64
65
66
{
"name": "markpoint",
"version": "0.0.1",
"license": "MIT",
"description": "",
"author": "Guillaume POUSSEL",
"type": "module",
"main": "packages/cli/dist/index.js",
"scripts": {
"build": "turbo run build",
"clean": "turbo run clean",
"dev": "turbo run dev",
"lint": "turbo run lint",
"lint:fix": "turbo run lint:fix",
"prepare": "husky",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:mutation": "stryker run"
},
"devDependencies": {
"@hideoo/eslint-config": "3.0.1",
"@hideoo/prettier-config": "2.0.0",
"@hideoo/tsconfig": "2.0.1",
"@stryker-mutator/core": "^8.2.6",
"@stryker-mutator/typescript-checker": "^8.2.6",
"@stryker-mutator/vitest-runner": "^8.2.6",
"@types/node": "^20.11.30",
"@vitest/coverage-v8": "^1.4.0",
"eslint": "8.57.0",
"husky": "9.0.11",
"knip": "^5.7.0",
"lint-staged": "15.2.2",
"prettier": "3.2.5",
"shx": "^0.3.4",
"turbo": "^1.13.0",
"typescript": "5.4.3",
"vitest": "^1.4.0"
},
"engines": {
"node": ">=18"
},
"packageManager": "[email protected]",
"private": true,
"sideEffects": false,
"keywords": [],
"homepage": "https://github.com/gpoussel/markpoint",
"repository": {
"type": "git",
"url": "https://github.com/gpoussel/markpoint.git"
},
"bugs": "https://github.com/gpoussel/markpoint/issues",
"prettier": "@hideoo/prettier-config",
"lint-staged": {
"*": [
"prettier -w -u --cache",
"eslint --cache --no-warn-ignored --max-warnings=0"
]
},
"pnpm": {
"patchedDependencies": {
"[email protected]": "patches/[email protected]",
"[email protected]": "patches/[email protected]"
}
}
}