-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 825 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 825 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
34
35
36
37
38
39
{
"name": "dnote-atom",
"main": "./lib/index.js",
"version": "0.2.2",
"description": "Capture your coding wisdom inside Atom",
"keywords": [
"dnote",
"note",
"learning"
],
"repository": "https://github.com/dnote-io/dnote-atom",
"license": "MIT",
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"dependencies": {
"opn": "^5.3.0"
},
"devDependencies": {
"babel-eslint": "^8.2.3",
"eslint": "^4.19.1"
},
"consumedServices": {
"status-bar": {
"versions": {
"^1.0.0": "consumeStatusBar"
}
}
},
"configSchema": {
"showStatusBarIcon": {
"title": "Show Dnote icon in the status bar",
"description": "Clicking on the icon will open up a new note template.",
"type": "boolean",
"default": true,
"order": 1
}
}
}