forked from OleMchls/atom-wordcount
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 697 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 697 Bytes
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
{
"name": "wordcount",
"main": "./lib/main",
"version": "3.0.0",
"description": "Counts the words (and characters) in your current document, as well as in your selections and displays it in the status bar.",
"keywords": [
"word count",
"word",
"count",
"character count",
"char",
"character",
"status",
"bar",
"highlight"
],
"repository": "https://github.com/nesQuick/atom-wordcount",
"license": "MIT",
"engines": {
"atom": ">=0.180.0"
},
"dependencies": {
"first-mate": "^7.1.1",
"lodash": "^3.10.1"
},
"consumedServices": {
"status-bar": {
"versions": {
"^1.0.0": "consumeStatusBar"
}
}
}
}