-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
32 lines (32 loc) · 1.05 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
{
"name": "grammarify",
"version": "2.1.0",
"description": "Grammarify is a npm package that performs safe cleaning of text. Examples of safe cleaning include capitalizing the beginning of sentences, spellchecking mispelled words, changing SMS-speak to full words, fixed stretched words (ie. 'borrreedd'), removing lexical illusions (ie. multiple 'the the dog') and combining words that are mistaken separated (ie. 'her self' to 'herself').",
"keywords": [
"spelling",
"spellcheck",
"grammar",
"punctuation",
"proofread",
"clean-text",
"clean-sentences"
],
"main": "./lib/index.js",
"scripts": {
"build": "npx babel ./src -d ./lib",
"test": "jest --coverage --testPathPattern=./test"
},
"homepage": "https://github.com/reZach/grammarify",
"author": "reZach",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.18.9",
"@babel/core": "^7.18.9",
"@babel/preset-env": "^7.18.9",
"babel-preset-minify": "^0.5.2",
"jest": "^28.1.3"
},
"dependencies": {
"spellchecker": "3.7.1"
}
}