-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
36 lines (36 loc) · 1.06 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
{
"name": "electron-spell-check-provider",
"version": "v1.0.0-13",
"description": "Because Electron's spell-check APIs are just a little too low-level.",
"main": "src/index.js",
"scripts": {
"copy-en_gb-aff": "cp -f ./src/en_gb.aff ./node_modules/dictionary-en-gb/index.aff",
"test": "npm run copy-en_gb-aff && ./node_modules/mocha/bin/mocha --timeout 35000 -- './src/test/*' --recursive"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mixmaxhq/electron-spell-check-provider.git"
},
"keywords": [
"electron",
"spellchecker",
"spell",
"checker",
"spell-checker"
],
"author": "Jeff Wear <[email protected]> (https://mixmax.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mixmaxhq/electron-spell-check-provider/issues"
},
"homepage": "https://github.com/mixmaxhq/electron-spell-check-provider#readme",
"dependencies": {
"nspell": "1.0.3",
"dictionary-en-gb": "1.2.0",
"underscore": "^1.8.3",
"mocha": "^3.2.0"
},
"devDependencies": {
"nspell": "^1.0.3"
}
}