-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 loc) · 1.68 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
{
"name": "grunt-markdownlint",
"version": "3.1.6",
"description": "A grunt task for markdown style checker and lint tool.",
"author": {
"name": "Sagie Gur-Ari",
"email": "[email protected]"
},
"license": "Apache-2.0",
"homepage": "http://github.com/sagiegurari/grunt-markdownlint",
"repository": {
"type": "git",
"url": "http://github.com/sagiegurari/grunt-markdownlint.git"
},
"bugs": {
"url": "http://github.com/sagiegurari/grunt-markdownlint/issues"
},
"keywords": [
"grunt",
"gruntplugin",
"validate",
"lint",
"report",
"markdown",
"markdownlint"
],
"main": "index.js",
"directories": {
"lib": "tasks",
"test": "test/spec"
},
"scripts": {
"clean": "rm -Rf ./.nyc_output ./coverage",
"format": "js-beautify --config ./.jsbeautifyrc --file ./*.js ./tasks/**/*.js ./test/**/*.js",
"lint-js": "eslint ./*.js ./tasks/**/*.js ./test/**/*.js",
"lint-css": "stylelint --allow-empty-input ./docs/**/*.css",
"lint": "npm run lint-js && npm run lint-css",
"jstest": "mocha --exit ./test/spec/**/*.js",
"coverage": "nyc --reporter=html --reporter=text --reporter=lcovonly --check-coverage=true mocha --exit ./test/spec/**/*.js",
"docs": "jsdoc2md tasks/**/*.js > ./docs/api.md",
"test": "npm run clean && npm run format && npm run lint && npm run docs && npm run coverage",
"postpublish": "git fetch && git pull"
},
"dependencies": {
"markdownlint": "^0.27"
},
"devDependencies": {
"chai": "^4",
"eslint": "^8",
"js-beautify": "^1",
"jsdoc-to-markdown": "^8",
"mocha": "^10",
"nyc": "^15",
"stylelint": "^13",
"stylelint-config-standard": "^22"
}
}