This repository has been archived by the owner on Sep 25, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
64 lines (64 loc) · 1.75 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
{
"name": "@abysser/matter-lint",
"version": "1.2.8",
"description": "A front-matter normalizer that depends on the commit history",
"main": "dist/index.js",
"bin": {
"matter-lint": "dist/bin/index.js"
},
"type": "commonjs",
"engines": {
"node": ">=10.24.1"
},
"files": [
"dist",
"LICENSE",
"package.json",
"README.md"
],
"scripts": {
"prepare": "husky install",
"build": "rollup -c && node scripts/2bin.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Abyssers/matter-lint.git"
},
"keywords": [
"front-matter",
"lint",
"git",
"nodejs"
],
"author": "Morilence",
"license": "MIT",
"bugs": {
"url": "https://github.com/Abyssers/matter-lint/issues"
},
"homepage": "https://github.com/Abyssers/matter-lint#readme",
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-strip": "^2.1.0",
"@rollup/plugin-typescript": "^8.4.0",
"@types/node": "^18.7.14",
"@typescript-eslint/eslint-plugin": "^5.35.1",
"@typescript-eslint/parser": "^5.35.1",
"eslint": "^8.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.1",
"lint-staged": "^13.0.3",
"markdownlint": "^0.26.2",
"markdownlint-cli2": "^0.5.1",
"prettier": "^2.7.1",
"rollup": "^2.79.0",
"tslib": "^2.4.0",
"typescript": "^4.8.2"
},
"dependencies": {
"@abysser/jit": "^1.3.10",
"gray-matter": "^4.0.3"
}
}