-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.11 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
{
"name": "@svengreb/wand",
"version": "0.7.0",
"description": "A simple and powerful toolkit for Mage",
"author": "Sven Greb <[email protected]> (https://www.svengreb.de)",
"homepage": "https://github.com/svengreb/wand",
"repository": {
"type": "git",
"url": "git+https://github.com/svengreb/wand.git"
},
"bugs": {
"url": "https://github.com/svengreb/wand/issues"
},
"license": "MIT",
"private": true,
"engines": {
"node": ">=15.13",
"npm": ">=7.7"
},
"scripts": {
"format": "run-s format:pretty",
"format:pretty": "prettier --write .",
"lint": "run-s lint:*",
"lint:ci": "run-s lint:md lint:ci:*",
"lint:ci:pretty": "prettier --loglevel silent --check .",
"lint:md": "remark --no-stdout . \".github/**/*.md\"",
"lint:pretty": "prettier --check .",
"prepare:husky": "husky install",
"prepare": "run-s prepare:*"
},
"devDependencies": {
"@arcticicestudio/remark-preset-lint": ">=0.4.0 <1.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.0.3",
"npm-run-all": "^4.1.5",
"prettier": "^2.4.1",
"remark-cli": "^10.0.1"
}
}