forked from electron-userland/electron-spellchecker
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.74 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
55
56
57
58
59
60
{
"name": "electron-spellchecker",
"version": "2.2.1",
"description": "Implement spellchecking, correctly",
"scripts": {
"doc": "esdoc -c ./esdoc.json",
"test-renderer": "electron-mocha --renderer --require ./test/support.js ./test",
"test-browser": "electron-mocha --browser --require ./test/support.js ./test",
"test": "npm run test-renderer",
"node": "cross-env ELECTRON_RUN_AS_NODE=1 ./node_modules/.bin/electron",
"start": "electron ./example/main.js"
},
"repository": {
"type": "git",
"url": "https://github.com/electron-userland/electron-spellchecker"
},
"keywords": [
"spelling",
"electron",
"rx"
],
"contributors": [
"Anais Betts <[email protected]>",
"Felix Rieseberg <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/electron-userland/electron-spellchecker/issues"
},
"main": "src/index.js",
"homepage": "https://github.com/electron-userland/electron-spellchecker",
"dependencies": {
"@aabuhijleh/electron-remote": "^1.4.0",
"@felixrieseberg/spellchecker": "^4.0.12",
"bcp47": "^1.1.2",
"cld": "^2.5.1",
"debug": "^4.1.1",
"keyboard-layout": "^2.0.16",
"lru-cache": "^5.1.1",
"mkdirp": "^0.5.1",
"pify": "^4.0.1",
"rxjs": "^5.0.1",
"rxjs-serial-subscription": "^0.1.1",
"spawn-rx": "^2.0.7"
},
"devDependencies": {
"@kwonoj/rxjs-testscheduler-compat": "0.0.4",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"cross-env": "^5.2.0",
"electron-debug": "^2.1.0",
"electron-mocha": "^6.0.4",
"electron": "4.0.6",
"esdoc": "^1.1.0",
"esdoc-es7-plugin": "0.0.3",
"esdoc-plugin-async-to-sync": "^0.5.0",
"eslint": "^5.14.1",
"rimraf": "^2.6.3"
}
}