-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.19 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
{
"name": "inbox",
"version": "0.0.1",
"description": "cross-platform email client",
"main": "./src/app/index.html",
"scripts": {
"test": "make test",
"start": "./node_modules/.bin/nodewebkit"
},
"repository": {
"type": "git",
"url": "git://github.com/fdrei/inbox.git"
},
"keywords": [
"email",
"calendar",
"chat",
"contacts"
],
"author": "fdrei",
"license": "MIT",
"bugs": {
"url": "https://github.com/fdrei/inbox/issues"
},
"homepage": "https://github.com/fdrei/inbox",
"dependencies": {
"nodewebkit": "^0.10.5",
"nedb": "^0.11.1",
"coffee-script": "^1.8.0"
},
"devDependencies": {
"mocha": "^1.21.4",
"should": "^4.3.0",
"mocha-spec-cov-alt": "^0.1.1",
"mocha-lcov-reporter": "0.0.1",
"blanket": "^1.1.6",
"coveralls": "^2.11.2",
"mocha-cobertura-reporter": "^1.0.4",
"debug": "^2.1.0",
"sinon": "^1.11.1"
},
"config": {
"blanket": {
"pattern": [
"/src/",
"/src/core"
],
"loader": "./node-loaders/coffee-script",
"data-cover-never": [
"node_modules",
"test"
],
"spec-cov": {
"threshold": 100
}
}
}
}