This repository has been archived by the owner on Aug 27, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 53
/
package.json
77 lines (77 loc) · 2.02 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
{
"name": "cozy-home",
"version": "2.5.22",
"author": "Cozy Cloud <[email protected]> (http://cozycloud.cc)",
"license": "AGPL-3.0",
"engine": {
"node": "*"
},
"repository": {
"type": "git",
"url": "https://github.com/cozy/cozy-home.git"
},
"main": "server.js",
"dependencies": {
"americano": "0.4.5",
"async": "0.2.10",
"cozy-clearance": "0.1.22",
"cozy-clients": "1.0.6",
"cozy-notifications-helper": "1.1.0",
"cozy-realtime-adapter": "1.0.2",
"cozy-slug": "0.2.2",
"cozydb": "0.1.12",
"del": "1.1.1",
"fstream": "1.0.10",
"imagemagick": "0.1.3",
"jade": "1.9.2",
"moment-timezone": "0.3.0",
"multiparty": "4.1.2",
"node-polyglot": "0.4.1",
"printit": "0.1.18",
"request": "2.69.0",
"request-json": "0.5.6",
"rrule": "2.0.1",
"tar": "2.1.1",
"thirty-two": "1.0.1"
},
"contributors": [
"Zoe Bellot",
"Romain Foucault",
"Jim Lehmer",
"Frank Rousseau",
"Joseph Silvestre",
"irdan",
"Steve Phillips",
"Borjan Tchakaloff",
"Brendan Abolivier"
],
"devDependencies": {
"brunch": "1.8.5",
"chai": "1.9.0",
"coffee-script": "1.10.0",
"mocha": "2.3.3",
"nock": "0.29.1",
"nodemon": "1.10.2",
"npm-run-all": "3.1.0",
"numeral": "^1.5.3",
"should": "^4.6.1",
"sinon": "^1.12.2"
},
"scripts": {
"test": "cake --use-js tests",
"start": "node build/server.js",
"clean": "rm -rf build",
"build:client": "cd client && brunch build",
"build:server": "cake build",
"build": "npm-run-all 'build:*'",
"ensure:client": "cd client && npm update",
"prebuild": "npm-run-all clean tx",
"prebuild:client": "npm run 'ensure:client'",
"prewatch:client": "npm run 'ensure:client'",
"postinstall": "node postinstall.js",
"tx": "tx pull --all || true",
"watch": "npm-run-all --parallel 'watch:*'",
"watch:client": "cd client && brunch watch",
"watch:server": "nodemon server.coffee --ignore client/ --ignore market.json"
}
}