-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
43 lines (43 loc) · 1 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
{
"name": "proofreader",
"description": "Simple text proofreader based on 'write-good' (hemingway-app-like suggestions) and 'nodehun' (spelling).",
"version": "1.0.0",
"repository": {
"type": "git",
"url": "git://github.com/kdzwinel/Proofreader.git"
},
"bugs": {
"url": "http://github.com/kdzwinel/Proofreader/issues"
},
"author": "Konrad Dzwinel <kdzwinel@gmail.com>",
"license": "MIT",
"keywords": [
"spelling",
"spellcheck",
"proofreading",
"proofread"
],
"bin": {
"proofreader": "./bin/cmd.js"
},
"scripts": {
"test": "mocha specs --require specs/helpers/chai.js"
},
"dependencies": {
"cheerio": "^0.22.0",
"cli-color": "^1.0.0",
"commander": "^2.5.0",
"marked": "^0.3.18",
"mime": "^2.2.2",
"nodehun": "^2.0.11",
"nodehun-sentences": "^1.0.4",
"request": "^2.49.0",
"write-good": "^0.11.3"
},
"devDependencies": {
"chai": "^2.0.0",
"mocha": "^2.1.0",
"mock-fs": "^4.4.2",
"nock": "^0.59.1"
}
}