This repository has been archived by the owner on Sep 20, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
88 lines (88 loc) · 2.77 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "import-from-google",
"version": "0.2.4",
"engines": [
"node = 0.10.x"
],
"description": "Import all your goole contacts, events and photos",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/cozy/cozy-template-coffee.git"
},
"main": "server.coffee",
"dependencies": {
"americano": "0.4.2",
"async": "^0.9.0",
"cozy-notifications-helper": "^1.0.2",
"cozydb": "0.1.10",
"gdata-js": "3.0.1",
"gm": "1.17.0",
"googleapis": "2.0.2",
"imagemagick-stream": "^2.0.0",
"jade": "1.9.1",
"lodash": "^3.8.0",
"moment-timezone": "^0.3.1",
"node-polyglot": "^0.4.1",
"printit": "0.1.15",
"request-json": "0.5.5",
"socket.io": "1.3.5"
},
"devDependencies": {
"brunch": "^2.8.2",
"coffee-jshint": "^0.2.2",
"coffee-script": "^1.9.3",
"coffeelint": "^1.9.6",
"cozy-fixtures": "1.1.1",
"mocha": "1.20.1",
"parallelshell": "^1.1.1",
"should": "4.0.1"
},
"scripts": {
"test": "mocha tests -c -R spec --compilers coffee:coffee-script/register",
"start": "node build/server.js",
"lint": "npm run lint1 && npm run lint2",
"build:server1": "coffee -cb --output build/server server",
"build:server2": "coffee -cb --output build/ server.coffee",
"build:jade1": "jade -o build/server/views -c -n \"t\" server/views/index.jade",
"build:jade2": "echo \";\nmodule.exports = t;\" >> build/server/views/index.js",
"build:jade": "mkdir -p build/server/views && npm run build:jade1 && npm run build:jade2",
"build:server": "npm run build:server1 && npm run build:server2 && npm run build:jade",
"clean:client": "rm -rf build/client && mkdir build/client",
"build:client1": "cd client/ && brunch build --production",
"build:client2": "cp -R client/public build/client/",
"build:client": "npm run clean:client && npm run build:client1 && npm run build:client2",
"build": "npm run build:server && npm run build:client && cake build",
"lint1": "coffee-jshint -o node server/**/*.coffee",
"lint2": "coffeelint server",
"dev": "parallelshell 'cd client && brunch w' 'coffee server.coffee'"
},
"icon-path": "client/app/assets/icons/main_icon.svg",
"cozy-permissions": {
"Album": {
"description": "Import photos albums"
},
"CozyInstance": {
"description": "Read the cozy url"
},
"Contact": {
"description": "Import contacts"
},
"Event": {
"description": "Import events"
},
"Photo": {
"description": "Import photos"
},
"Notification": {
"description": "Add notification"
},
"Account": {
"description": "Add email account"
},
"Tag": {
"description": "Add a blue Google tag"
}
},
"cozy-displayName": "Import From Google"
}