forked from kdzwinel/Proofreader
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.15 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.15 KB
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
{
"name": "proofreader",
"description": "Simple text proofreader based on 'write-good' (hemingway-app-like suggestions) and 'nodehun' (spelling).",
"version": "0.6.4",
"repository": {
"type": "git",
"url": "git://github.com/kdzwinel/Proofreader.git"
},
"bugs": {
"url": "http://github.com/kdzwinel/Proofreader/issues"
},
"author": "Konrad Dzwinel <kdzwinel@gmail.com>",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/kdzwinel/Proofreader/blob/master/LICENSE"
}
],
"keywords": [
"spelling",
"spellcheck",
"proofreading",
"proofread"
],
"bin": {
"proofreader": "./bin/cmd.js"
},
"scripts": {
"test": "mocha specs --require specs/helpers/chai.js"
},
"dependencies": {
"cheerio": "^0.19.0",
"cli-color": "^1.0.0",
"commander": "^2.5.0",
"marked": "^0.3.2",
"mime": "^1.2.11",
"nodehun": "^2.0.4",
"nodehun-sentences": "^1.0.1",
"promise": "^7.0.1",
"request": "^2.49.0",
"sync": "^0.2.3",
"write-good": "^0.9.1"
},
"devDependencies": {
"chai": "^2.0.0",
"mocha": "^2.1.0",
"mock-fs": "^2.5.0",
"nock": "^0.59.1"
}
}