This repository has been archived by the owner on Jan 12, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
57 lines (57 loc) · 1.44 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
{
"name": "atom-notes",
"main": "./lib/atom-notes",
"version": "1.23.0",
"contributors": [
"lexicalunit <[email protected]>",
"Seongjae Lee <[email protected]>",
"Nikita Litvin <[email protected]>",
"Jonathan Hoyt <[email protected]>"
],
"description": "Embedded Notational Velocity-like features for Atom",
"keywords": [
"wiki",
"notational velocity",
"notes",
"notetaking"
],
"repository": "https://github.com/lexicalunit/atom-notes",
"license": "MIT",
"engines": {
"atom": ">=1.24.0 <2.0.0"
},
"bugs": {
"url": "https://github.com/lexicalunit/atom-notes/issues"
},
"homepage": "https://github.com/lexicalunit/atom-notes",
"scripts": {
"add": "all-contributors add",
"generate": "all-contributors generate",
"lint": "eslint ."
},
"deserializers": {
"SearchIndex": "deserializeSearchIndex"
},
"uriHandler": {
"method": "handleURI",
"deferActivation": false
},
"dependencies": {
"elasticlunr": "^0.9.5",
"etch": "^0.14.0",
"fs-plus": "^3.1.1",
"fuzzaldrin-plus": "^0.6.0",
"gray-matter": "^4.0.2",
"timsort": "^0.3.0"
},
"devDependencies": {
"all-contributors-cli": "^6.14.1",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"temp": "^0.9.1"
}
}