This repository was archived by the owner on Jul 31, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
59 lines (59 loc) · 1.5 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
{
"name": "cozy-data-system",
"description": "Data-layer between cozy applications and persistence systems",
"version": "2.5.14",
"author": "Cozy Cloud <[email protected]> (http://cozycloud.cc)",
"license": "AGPL-3.0",
"engines": [
"*"
],
"repository": {
"type": "git",
"url": "https://github.com/cozy/cozy-data-system.git"
},
"dependencies": {
"americano": "0.4.2",
"async": "1.5.2",
"axon": "0.6.1",
"cozy-indexer": "0.0.13",
"cradle": "0.7.1",
"git-rev": "0.2.1",
"gm": "1.21.1",
"http-proxy": "1.12.0",
"lodash": "4.6.1",
"mime": "1.3.4",
"multiparty": "3.3.0",
"musicmetadata": "2.0.4",
"nodemailer": "1.3.4",
"nodemailer-smtp-transport": "1.0.3",
"printit": "0.1.15",
"request": "2.74.0",
"request-json": "0.6.1",
"string": "1.8.0",
"through": "2.3.7"
},
"devDependencies": {
"chai": "1.9.0",
"coffee-coverage": "0.4.2",
"coffee-jshint": "0.2.3",
"coffee-script": "1.10.0",
"coffeelint": "1.13.0",
"mocha": "1.17.1",
"should": "3.1.2",
"sinon": "1.17.3"
},
"main": "build/server.js",
"scripts": {
"test": "cake --use-js tests",
"start": "node build/server.js",
"build": "cake build",
"lint": "npm run lint1 && npm run lint2",
"lint1": "coffeelint -f coffeelint.json ./server/**/*.coffee ./server/*.coffee",
"lint2": "coffee-jshint -o node ./server/**/*.coffee ./server/*.coffee"
},
"config": {
"blanket": {
"pattern": "./server/"
}
}
}