-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.82 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
{
"name": "@mokr/root",
"private": true,
"description": "Moker root package (dummy)",
"repository": "https://github.com/hongaar/moker",
"license": "MIT",
"author": "[email protected]",
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"build": "yarn workspaces foreach --all --topological --verbose run build",
"build:clean": "yarn workspaces foreach --all --topological --verbose run build:clean",
"build:watch": "yarn workspaces foreach --all --parallel --jobs unlimited --interlaced run build:watch",
"doctoc": "doctoc README.md",
"format": "prettier --write --ignore-unknown .",
"format:check": "prettier --check --ignore-unknown .",
"postinstall": "husky install",
"release": "semantic-release",
"start": "node packages/cli/moker.js",
"test": "yarn workspaces foreach --all --topological --verbose run test",
"todos": "leasot --exit-nicely --reporter markdown --ignore \"**/node_modules\" \"**/*.ts\" > TODO.md",
"typescript": "yarn build:clean && tsc --build --force",
"typescript:watch": "tsc --build --watch"
},
"lint-staged": {
"*": "prettier --write --ignore-unknown"
},
"devDependencies": {
"@semantic-release/changelog": "6.0.3",
"@semantic-release/exec": "6.0.3",
"@semantic-release/git": "10.0.1",
"@types/prettier": "^3.0.0",
"doctoc": "2.2.1",
"husky": "9.0.11",
"leasot": "13.3.0",
"lint-staged": "15.2.2",
"prettier": "3.2.5",
"semantic-release": "23.0.8",
"semantic-release-yarn": "3.0.2",
"typescript": "5.4.5"
},
"packageManager": "[email protected]",
"moker": {
"scoped": true,
"plugins": [
"husky",
"lint-staged",
"prettier",
"semantic-release",
"github-actions",
"devcontainer",
"dependabot",
"todos",
"doctoc"
]
}
}