forked from mlfryman/dibster
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 1.84 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
{
"name": "dibster",
"version": "0.0.0",
"description": "Dibster - a bartering app",
"main": "app/index.js",
"directories": {
"test": "test"
},
"bin": {
"coveralls": "./node_modules/coveralls/bin/coveralls.js"
},
"scripts": {
"test": "mocha test --recursive -R spec --timeout 9000",
"watch": "mocha test --recursive -R spec --watch --timeout 9000",
"syntax": "./node_modules/grunt-cli/bin/grunt build",
"coveralls": "mocha test --recursive -r blanket -R mocha-lcov-reporter | coveralls"
},
"config": {
"blanket": {
"pattern": "/app/"
}
},
"repository": {
"type": "git",
"url": "https://github.com/mlfryman/dibster"
},
"author": "Melanie Fryman <[email protected]>",
"collaborators": "Nathan Vasquez <[email protected]>, Matt Keef <[email protected]>, Juan Rodriguez <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mlfryman/dibster/issues"
},
"homepage": "https://github.com/mlfryman/dibster",
"dependencies": {
"async": "^0.9.0",
"bcrypt": "^0.8.0",
"body-parser": "^1.6.6",
"chalk": "^0.5.1",
"connect-redis": "^2.1.0",
"express": "^4.8.6",
"express-method-override": "0.0.3",
"express-session": "^1.7.6",
"jade": "^1.5.0",
"less-middleware": "^1.0.4",
"lodash": "^2.4.1",
"mailgun-js": "^0.5.4",
"moment": "^2.8.2",
"mongodb": "^1.4.9",
"morgan": "^1.2.3",
"multiparty": "^3.3.2",
"twilio": "^1.7.0"
},
"devDependencies": {
"blanket": "^1.1.6",
"chai": "^1.9.1",
"coveralls": "^2.11.1",
"grunt": "^0.4.5",
"grunt-cli": "^0.1.13",
"grunt-contrib-jshint": "^0.10.0",
"grunt-contrib-watch": "^0.6.1",
"grunt-jscs": "^0.6.2",
"jshint-stylish": "^0.4.0",
"mocha": "^1.21.4",
"mocha-lcov-reporter": "0.0.1",
"supertest": "^0.13.0"
}
}