-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1004 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 1004 Bytes
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
{
"name": "@nandenjin/mrm-preset",
"version": "0.3.27",
"description": "Personal preset for repo setup with mrm",
"main": "config.json",
"files": [
"*"
],
"keywords": [
"mrm",
"mrm-tasks"
],
"repository": "git@github.com:nandenjin/mrm-preset.git",
"author": "Kazumi Inada <hello@nandenjin.com>",
"license": "MIT",
"scripts": {
"lint": "eslint .",
"lintfix": "eslint --fix .",
"format": "prettier --write '**/*.{js,md,yml,json}'",
"prepare": "husky install"
},
"dependencies": {
"consola": "^3.0.0",
"mrm-core": "^7.0.0",
"mrm-task-lint-staged": "^7.0.0",
"sync-fetch": "^0.6.0",
"yaml": "^2.0.0"
},
"devDependencies": {
"@eslint/js": "^9.1.1",
"eslint": "9.39.4",
"eslint-config-prettier": "10.1.8",
"globals": "^16.0.0",
"husky": "9.1.7",
"lint-staged": "16.4.0",
"prettier": "3.8.3"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,md,yml,json}": "prettier --write"
}
}