-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
54 lines (54 loc) · 1.28 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": "spech",
"version": "0.2.1",
"description": "Check your text for grammar and spelling error using multiple providers",
"bin": "src/index.js",
"main": "src/index.js",
"scripts": {
"start": "src/index.js 'README.md' 'docs/**/*.md'",
"test": "humile",
"test:full": "npm run test && npm run lint && npm start",
"lint": "eslint 'src/**/*.js'",
"postversion": "git push && git push --tags",
"preversion": "npm run test:full",
"prepack": "npm run test:full"
},
"typings": "src/index.d.ts",
"repository": "megahertz/spech",
"files": [
"src/*",
"!__specs__"
],
"humile": {
"style": {
"diff": {
"maxDepth": 4
}
}
},
"keywords": [
"spell checker",
"grammar checker",
"hunspell",
"GrammarBot"
],
"author": "Alexey Prokhorov",
"license": "MIT",
"bugs": "https://github.com/megahertz/spech/issues",
"homepage": "https://github.com/megahertz/spech#readme",
"engines": {
"node": ">=10"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-import": "^2.18.2",
"humile": "^0.2.16"
},
"dependencies": {
"ci-job-number": "^0.3.1",
"glob": "^7.1.6",
"hunspell-asm": "^4.0.1",
"package-options": "^0.1.1"
}
}