This repository has been archived by the owner on Jan 16, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
84 lines (84 loc) · 3.13 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
{
"name": "cozy-contacts",
"version": "2.1.14",
"author": "Cozy Cloud <[email protected]> (https://cozy.io/)",
"license": "AGPL-3.0",
"description": "A cozy application to manage your contacts.",
"engines": [
"node >= 0.10.x"
],
"main": "build/server.js",
"dependencies": {
"americano": "0.4.2",
"async": "1.5.2",
"compression": "1.6.0",
"cozy-realtime-adapter": "1.0.1",
"cozy-vcard": "0.2.17",
"cozydb": "0.1.9",
"form-data": "0.2.0",
"jade": "1.11.0",
"multiparty": "4.1.2",
"printit": "0.1.15"
},
"devDependencies": {
"bower": "1.7.2",
"brunch": "1.8.5",
"chai": "1.5.0",
"coffee-jshint": "0.2.3",
"coffee-script": "1.10.0",
"coffeelint": "1.14.2",
"cozy-fixtures": "^1.1.3",
"mocha": "2.3.4",
"node-inspector": "0.12.5",
"nodemon": "1.8.1",
"npm-run-all": "1.4.0",
"request-json": "0.5.4",
"sinon": "1.6.0"
},
"scripts": {
"lint": "npm-run-all 'lint:*'",
"lint:coffeelint": "coffeelint --file coffeelint.json --quiet ./server/**/*.coffee ./server.coffee ./client/app/**/*.coffee",
"lint:jshint": "coffee-jshint --options node,couch ./server/**/*.coffee ./server.coffee",
"clean": "rm -rf build",
"tx": "tx pull --all || true",
"ensure:client": "cd client && npm update --quiet && bower install --quiet",
"prebuild": "npm-run-all clean tx lint",
"prebuild:client": "npm run ensure:client",
"postbuild": "npm-run-all --parallel copy:*",
"build:server": "coffee --bare --compile --output build/server server && coffee --bare --compile --output build server.coffee",
"build:client": "cd client && brunch build --production",
"copy:views": "mkdir -p build/server/views && cp -r server/views/* build/server/views/",
"build": "npm-run-all --parallel 'build:*'",
"test:server": "env NODE_ENV=test mocha test --globals setTimmediate,clearImmediate --reporter spec --compilers coffee:coffee-script/register --colors",
"test:client": "env NODE_PATH=\"./client/app:$NODE_PATH\" mocha client/test --compilers coffee:coffee-script/register --ui bdd --colors",
"test:build": "env USE_JS=true npm run test",
"test": "npm run test:server",
"fixtures:generate": "cozy-fixtures load -g -l -n 1000 client/test/fixtures/contacts-model.json",
"fixtures": "npm-run-all 'fixtures:*'",
"prewatch:client": "npm run ensure:client",
"watch:inspector": "node-inspector",
"watch:server": "nodemon --debug --ignore client/ server.coffee",
"watch:client": "cd client && brunch watch",
"watch": "npm-run-all --parallel 'watch:*'",
"start": "node build/server.js"
},
"repository": "https://github.com/cozy/cozy-contacts",
"readmeFilename": "README.md",
"cozy-permissions": {
"Contact": {
"description": "Create and edit your contacts."
},
"CozyInstance": {
"description": "Read language setting"
},
"ContactConfig": {
"description": "Store your settings for contacts"
},
"Tag": {
"description": "Create new tags and change their color"
},
"WebDAVAccount": {
"description": "Store webDAV password and sync informations"
}
}
}