-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.56 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
{
"name": "markdown-code-block-meta",
"version": "0.0.2",
"description": "A library to parse/stringify metadata of markdown code block",
"license": "MIT",
"author": {
"name": "Eric Chen",
"email": "[email protected]"
},
"keywords": [
"code-block",
"key-value",
"markdown",
"meta",
"metadata",
"pair",
"remark"
],
"homepage": "https://github.com/nice-move/markdown-code-block-meta",
"repository": {
"type": "git",
"url": "https://github.com/nice-move/markdown-code-block-meta.git"
},
"bugs": {
"url": "https://github.com/nice-move/markdown-code-block-meta/issues"
},
"main": "index.js",
"files": [],
"type": "module",
"scripts": {
"lint:staged": "nice-move lint staged",
"prepare": "nice-move git hooks",
"prepublishOnly": "pnpm run lint:staged && pnpm test",
"snapshot": "ava --fail-fast -u",
"test": "ava --fail-fast"
},
"devDependencies": {
"@bring-it/npm": "^0.3.5",
"@nice-move/cli": "^0.10.13",
"@nice-move/eslint-config-base": "^0.9.22",
"@nice-move/prettier-config": "^0.9.6",
"ava": "^5.3.1",
"eslint": "^8.51.0",
"eslint-plugin-ava": "^14.0.0",
"garou": "^0.6.17",
"prettier": "^3.0.3"
},
"engines": {
"node": "^16.15.0 || ^18.12.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"packageManager": "[email protected]",
"eslintConfig": {
"extends": "@nice-move/eslint-config-base"
},
"nice-move": {
"import-groups": "nice-move-preset"
},
"prettier": "@nice-move/prettier-config"
}