forked from lukeapage/node-markdown-spellcheck
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.43 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
{
"name": "markdown-spellcheck",
"version": "2.0.0-beta.0",
"description": "Spell-checks markdown files with an interactive CLI allowing automated spell checking.",
"keywords": [
"markdown",
"spell",
"spell-check",
"spellcheck",
"spelling"
],
"engines": {
"node": ">= 4"
},
"main": "es5/index.js",
"module": "es6/index.js",
"bin": {
"mdspell": "./bin/mdspell"
},
"scripts": {
"test": "node bin/mdspell -ran *.md && gulp lint && gulp test"
},
"author": "Luke Page",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/lukeapage/node-markdown-spellcheck.git"
},
"bugs": {
"url": "https://github.com/lukeapage/node-markdown-spellcheck/issues"
},
"dependencies": {
"async": "^2.1.4",
"chalk": "^2.0.1",
"commander": "^2.8.1",
"globby": "^6.1.0",
"hunspell-spellchecker": "^1.0.2",
"inquirer": "^1.0.0",
"js-yaml": "^3.10.0",
"marked": "^0.7.0",
"sinon-as-promised": "^4.0.0"
},
"devDependencies": {
"babel-core": "^6.18.2",
"babel-preset-es2015": "^6.3.13",
"babel-preset-es2015-loose": "^8.0.0",
"babel-runtime": "^6.25.0",
"chai": "^4.1.1",
"del": "^3.0.0",
"gulp": "^3.9.0",
"gulp-babel": "^6.1.1",
"gulp-eslint": "^4.0.0",
"gulp-eslint-if-fixed": "^1.0.0",
"gulp-mocha": "^3.0.0",
"proxyquire": "^1.7.0",
"run-sequence": "^1.1.2",
"sinon": "^1.17.5"
}
}