forked from opencollective/tipbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.23 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
{
"name": "tipbox",
"version": "1.0.0",
"description": "Collect anonymous feedback & tips from the communities you want.",
"main": "index.js",
"engines": {
"node": "0.10.26"
},
"scripts": {
"start": "node server",
"build": "gulp build",
"dev": "gulp watch & PGP_PASSPHRASE=1234 node-dev server",
"staging": "gulp build && NODE_ENV=staging npm start",
"tipbox.in": "gulp build && NODE_ENV=tipbox.in npm start",
"tipbox.is": "gulp build && NODE_ENV=tipbox.is npm start",
"deploy": "gulp build && git push heroku",
"postinstall": "node node_modules/.bin/gulp build",
"clean": "git branch --merged master | grep -v 'master$' | xargs git branch -d 2>/dev/null && exit 1",
"test": "./node_modules/.bin/nightwatch -c test/nightwatch.json"
},
"repository": {
"type": "git",
"url": "git://github.com/xdamman/tipbox.git"
},
"keywords": [
"tipbox",
"anonymous",
"tips",
"feedback"
],
"author": "Xavier Damman (@xdamman) - Mark Percival (@mdp)",
"license": "MIT",
"bugs": {
"url": "https://github.com/xdamman/tipbox/issues"
},
"homepage": "https://github.com/xdamman/tipbox",
"dependencies": {
"async": "^0.9.0",
"body-parser": "^1.9.0",
"browserify": "^10.2.4",
"events": "^1.0.2",
"express": "^4.9.5",
"express-favicon": "^1.0.1",
"gulp": "^3.6.0",
"gulp-less": "^3.0.1",
"gulp-minify-css": "^0.3.4",
"gulp-rename": "^1.2.0",
"gulp-sourcemaps": "^0.4.1",
"gulp-streamify": "0.0.5",
"gulp-uglify": "^0.3.1",
"gulp-uncss": "^0.5.1",
"gulp-util": "^2.2.14",
"hogan.js": "^3.0.2",
"inherits": "^2.0.1",
"jquery": "^2.1.1",
"kbpgp": "^2.0.46",
"less-plugin-autoprefix": "^1.4.0",
"lodash": "^2.4.1",
"mailgun-js": "^0.6.7",
"mold-source-map": "^0.3.0",
"moment": "^2.10.2",
"node-pgp-search": "0.1.7",
"nodemailer": "^1.3.4",
"numbro": "1.1.1",
"request": "^2.58.0",
"slideout": "^0.1.8",
"smtp-connection": "^1.2.0",
"underscore": "^1.7.0",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^0.1.1",
"watchify": "^0.6.2",
"winston": "^2.2.0"
},
"devDependencies": {
"chai": "^1.10.0",
"mocha": "^2.0.1",
"nightwatch": "^0.5.33"
}
}