package.json
1.9 KB
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
{
"name": "igloo",
"version": "0.0.9",
"description": "Igloo is a lightweight, fast, and minimal framework for rapid development",
"main": "./lib",
"engines": {
"iojs": "2.0.x",
"node": ">=0.12.x"
},
"repository": {
"type": "git",
"url": "git://github.com/niftylettuce/igloo.git"
},
"author": "Nick Baugh <niftylettuce@gmail.com>",
"contributors": [
{
"name": "Nick Baugh",
"email": "niftylettuce@gmail.com"
},
{
"name": "Adnan Ibrišimbegović",
"email": "adibih@gmail.com"
},
{
"name": "Bruno Bernardino",
"email": "me@brunobernardino.com"
}
],
"bugs": {
"url": "https://github.com/niftylettuce/igloo/issues"
},
"license": "MIT",
"homepage": "https://github.com/niftylettuce/igloo",
"dependencies": {
"bootable": "^0.2.4",
"chalk": "^1.0.0",
"commander": "^2.8.1",
"connect-redis": "~2.3.0",
"email-templates": "^1.2.1",
"express-session": "^1.11.2",
"merge-defaults": "^0.2.1",
"nodemailer": "^1.3.4",
"slack-winston": "^0.0.2",
"to-camel-case": "^0.2.1",
"underscore": "^1.8.3",
"underscore.string": "^3.0.3",
"update-notifier": "^0.5.0",
"winston": "git://github.com/niftylettuce/winston",
"winston-hipchat": "^0.1.3",
"winston-mongodb": "~1.1.1"
},
"devDependencies": {
"chai": "^2.3.0",
"istanbul": "^0.3.14",
"knex": "^0.8.5",
"mocha": "^2.2.5",
"mongoose": "~4.0.3",
"mongoose-json-select": "^0.2.1"
},
"scripts": {
"prepublish": "npm prune",
"test": "mocha --reporter spec --bail --check-leaks --require test/support/should test/",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks --require test/support/should test/",
"test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks --require test/support/should test/"
}
}