This repository was archived by the owner on Jul 8, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.4 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.4 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
{
"name": "notes",
"version": "1.0.5",
"description": "Cozy Notes is a simple and powerful note manager. Its specificity resides in its note editor which helps you to structure efficiently your notes. It also provide classical text editor shortcuts which make you ultra-efficient at typing notes.",
"author": "Cozy Cloud <contact@cozycloud.cc> (http://cozycloud.cc)",
"license": "AGPL-3.0",
"engines": [
"node >= 0.6.0"
],
"repository": "https://github.com/cozy/cozy-notes.git",
"main": "server.js",
"dependencies": {
"async": "*",
"americano": "0.4.2",
"americano-cozy": "0.2.11",
"cozy-realtime-adapter": "1.0.1"
},
"devDependencies": {
"request-json": "= 0.5.3",
"should": "= 1.2.0",
"mocha": "= 1.6.0",
"chai": "= 1.3.0",
"coffee-script": "1.10.0"
},
"scripts": {
"postinstall": "node init.js",
"start": "node server.js",
"test": "cake tests",
"build": "cake convert"
},
"cozy-permissions": {
"Note": {
"description": "Creates and edits your note documents."
},
"Tree": {
"description": "Find the Inbox TodoList"
},
"Contact": {
"description": "Create meta-tag to a contact"
},
"Alarm": {
"description": "Create reminders from a note"
},
"Task": {
"description": "Create tasks from a note"
},
"TodoList": {
"description": "Create the \"inbox\" TodoList"
}
}
}