-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.29 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
{
"name": "gulp-markdownlint",
"version": "0.0.1-beta.5",
"description": "the gulp plugin for markdownlint",
"main": "dist/index.js",
"scripts": {
"lint": "eslint {src,test}/**/*.js",
"test": "jest",
"build": "babel src -d dist",
"prepublishOnly": "npm run lint && npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RhysXia/gulp-markdownlint.git"
},
"keywords": [
"gulp",
"plugin",
"markdownlint",
"markdown",
"lint"
],
"author": "Rhys Xia",
"license": "MIT",
"bugs": {
"url": "https://github.com/RhysXia/gulp-markdownlint/issues"
},
"homepage": "https://github.com/RhysXia/gulp-markdownlint#readme",
"devDependencies": {
"@babel/cli": "^7.4.3",
"@babel/core": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"gulp": "^4.0.0",
"jest": "^24.7.1",
"markdownlint": "^0.13.0"
},
"peerDependencies": {
"markdownlint": "^0.13.0"
},
"dependencies": {
"plugin-error": "^1.0.1",
"through2": "^3.0.1"
},
"engines": {
"node": ">=8"
}
}