forked from eslint/markdown
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.39 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
{
"name": "eslint-plugin-markdown",
"version": "1.0.0-beta.7",
"description": "An ESLint plugin to lint JavaScript in Markdown code fences.",
"license": "MIT",
"author": {
"name": "Brandon Mills",
"url": "https://github.com/btmills"
},
"repository": {
"type": "git",
"url": "https://github.com/eslint/eslint-plugin-markdown.git"
},
"bugs": {
"url": "https://github.com/eslint/eslint-plugin-markdown/issues"
},
"homepage": "https://github.com/eslint/eslint-plugin-markdown#readme",
"keywords": [
"eslint",
"eslintplugin",
"markdown",
"lint",
"linter"
],
"scripts": {
"lint": "eslint Makefile.js lib/**/*.js tests/lib/plugin.js",
"test": "npm run lint && npm run test-cov",
"test-cov": "istanbul cover _mocha -- -c tests/lib/**/*.js",
"release": "eslint-release",
"ci-release": "eslint-ci-release",
"gh-release": "eslint-gh-release",
"alpharelease": "eslint-prerelease alpha",
"betarelease": "eslint-prerelease beta"
},
"main": "index.js",
"files": [
"index.js",
"lib/index.js",
"lib/processor.js"
],
"devDependencies": {
"chai": "^3.0.0",
"eslint": "^2.2.0",
"eslint-config-eslint": "^3.0.0",
"eslint-release": "^0.10.2",
"istanbul": "^0.4.5",
"mocha": "^2.2.5"
},
"dependencies": {
"object-assign": "^4.0.1",
"remark-parse": "^3.0.0",
"unified": "^6.1.2"
}
}