forked from electron-userland/electron-spellchecker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.76 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.76 KB
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
61
62
{
"name": "@criptext/electron-spellchecker",
"version": "2.0.2-rc2",
"private": false,
"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": "git+https://github.com/electron-userland/electron-spellchecker.git"
},
"keywords": [
"spelling",
"electron",
"rx"
],
"author": "Paul Betts <paul@paulbetts.org>",
"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": {
"@felixrieseberg/spellchecker": "4.0.8",
"@nornagon/cld": "2.4.9",
"bcp47": "1.1.2",
"debug": "4.1.1",
"electron-remote": "1.3.0",
"keyboard-layout": "2.0.15",
"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": "4.0.6",
"electron-debug": "2.1.0",
"electron-mocha": "6.0.4",
"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"
},
"directories": {
"example": "example",
"test": "test"
}
}