-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
103 lines (103 loc) · 3.74 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "remark-preset-lint-itgalaxy",
"version": "16.0.0",
"description": "Itgalaxy org's remark lint rules",
"keywords": [
"remark",
"remark-lint",
"preset",
"markdown",
"md",
"lint",
"itgalaxy",
"styleguide"
],
"author": "Itgalaxy",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/itgalaxy/remark-lint-config-itgalaxy.git"
},
"homepage": "https://github.com/itgalaxy/remark-lint-config-itgalaxy",
"bugs": "https://github.com/itgalaxy/remark-lint-config-itgalaxy/issues",
"main": "index.js",
"files": [
"index.js"
],
"dependencies": {
"remark-lint": "^8.0.0",
"remark-lint-code-block-style": "^2.0.1",
"remark-lint-fenced-code-flag": "^2.0.1",
"remark-lint-file-extension": "^1.0.5",
"remark-lint-final-definition": "^2.1.0",
"remark-lint-first-heading-level": "^2.0.1",
"remark-lint-heading-increment": "^2.0.1",
"remark-lint-no-auto-link-without-protocol": "^2.0.1",
"remark-lint-no-blockquote-without-marker": "^4.0.0",
"remark-lint-no-duplicate-definitions": "^2.0.1",
"remark-lint-no-duplicate-headings-in-section": "^2.0.2",
"remark-lint-no-empty-url": "^2.0.1",
"remark-lint-no-file-name-consecutive-dashes": "^1.0.5",
"remark-lint-no-file-name-irregular-characters": "^1.0.5",
"remark-lint-no-file-name-mixed-case": "^1.0.5",
"remark-lint-no-file-name-outer-dashes": "^1.0.6",
"remark-lint-no-heading-like-paragraph": "^2.0.1",
"remark-lint-no-heading-punctuation": "^2.0.1",
"remark-lint-no-html": "^2.0.1",
"remark-lint-no-inline-padding": "^3.0.0",
"remark-lint-no-literal-urls": "^2.0.1",
"remark-lint-no-multiple-toplevel-headings": "^2.0.1",
"remark-lint-no-reference-like-url": "^2.0.1",
"remark-lint-no-shell-dollars": "^2.0.2",
"remark-lint-no-shortcut-reference-image": "^2.0.1",
"remark-lint-no-shortcut-reference-link": "^2.0.1",
"remark-lint-no-undefined-references": "^3.0.0",
"remark-lint-no-unused-definitions": "^2.0.1",
"remark-lint-ordered-list-marker-value": "^2.0.1",
"remark-validate-links": "^10.0.4"
},
"devDependencies": {
"babel-eslint": "^10.0.2",
"eslint": "^7.27.0",
"eslint-plugin-ava": "^11.0.0",
"eslint-plugin-html": "^6.1.2",
"eslint-plugin-import": "^2.23.3",
"eslint-plugin-itgalaxy": "^129.0.0",
"eslint-plugin-jest": "^24.3.6",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-lodash": "^7.2.0",
"eslint-plugin-markdown": "^1.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.14.2",
"eslint-plugin-unicorn": "^22.0.0",
"globby": "^11.0.3",
"husky": "^3.0.1",
"jest": "^27.0.1",
"lint-staged": "^11.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.0",
"remark": "^13.0.0",
"remark-cli": "^9.0.0",
"standard-version": "^9.3.0",
"vfile": "^4.0.1"
},
"scripts": {
"lint:prettier": "prettier --list-different --ignore-path .gitignore 'tests/**/*.{js,mjs,jsx,md,yml,yaml}' '*.{js,mjs,jsx,md,yml,yaml}' '!**/fixtures/**'",
"lint:js": "eslint --cache --report-unused-disable-directives --ext '.js,.mjs,.jsx,.md' --ignore-path .gitignore --ignore-pattern '**/fixtures/**' .",
"lint:md": "remark -f -q --ignore-path .gitignore --ignore-pattern '**/fixtures/**' .",
"lint": "npm-run-all -l -p lint:**",
"prettier": "npm run lint:prettier -- --write",
"fix:js": "npm run lint:js -- --fix",
"fix": "npm-run-all -l prettier -p 'fix:**'",
"pretest": "npm run lint",
"test:only": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test": "npm run test:coverage",
"release": "standard-version"
},
"engines": {
"node": ">= 12.13.0"
}
}