-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 3.02 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "chaoticyo",
"version": "0.1.2",
"description": "Demonstrate a messaging platform for business networking",
"main": "server.js",
"scripts": {
"dev": "gulp",
"postinstall": "node_modules/.bin/bower install",
"start": "node server.js",
"test-unit": "istanbul cover ./node_modules/mocha/bin/_mocha ./test/unit",
"test-integration": "istanbul cover ./node_modules/mocha/bin/_mocha ./test/integration",
"test-casper": "casperjs test ./test/test.webui.js",
"test-casper-runner": "NODE_ENV=test node casper-runner.js",
"test": "npm run lint && npm run test-unit && npm run test-integration && npm run test-casper-runner",
"lint": "eslint .",
"autofix": "eslint --fix .",
"validate": "npm ls"
},
"author": "pivotandscale.com",
"dependencies": {
"async": "^2.0.0",
"axios": "0.14.0",
"badwords": "^1.0.0",
"bluebird": "^3.4.3",
"body-parser": "^1.15.1",
"botkit": "^0.2.2",
"botkit-sms": "^1.0.7",
"bower": "^1.7.9",
"cf-deployment-tracker-client": "^0.1.1",
"colors": "^1.1.2",
"connect-mongo": "^1.3.2",
"cookie-parser": "^1.4.0",
"cookies": "^0.6.0",
"cors": "^2.7.1",
"debug": "^2.2.0",
"dotenv": "^2.0.0",
"express": "^4.13.4",
"express-rate-limit": "^2.4.0",
"express-session": "^1.14.0",
"extend": "^3.0.0",
"helmet": "^2.1.2",
"moment": "^2.10.6",
"mongoose": "^4.6.5",
"natural": "^0.4.0",
"node-uuid": "^1.4.7",
"nodemailer": "^2.6.0",
"object.pick": "^1.1.2",
"request": "^2.72.0",
"serialize-javascript": "^1.1.2",
"serve-favicon": "^2.3.0",
"socket.io": "^1.3.5",
"socket.io-client": "^1.4.0",
"string-template": "^1.0.0",
"use-strict": "^1.0.1",
"uuid": "^2.0.2",
"validator": "^6.1.0",
"vcap_services": "^0.2.0",
"watson-developer-cloud": "^2.1.4"
},
"devDependencies": {
"browser-sync": "^2.14.0",
"casperjs": "^1.1.1",
"eslint": "^3.3.1",
"graceful-fs": "^4.1.6",
"gulp": "^3.9.0",
"gulp-autoprefixer": "^3.0.2",
"gulp-clean": "^0.3.2",
"gulp-clean-css": "^2.0.12",
"gulp-concat": "^2.6.0",
"gulp-iconfont": "^1.0.0",
"gulp-iconfont-css": "0.0.9",
"gulp-nodemon": "^2.0.2",
"gulp-plumber": "^1.0.1",
"gulp-rename": "^1.2.2",
"gulp-sass": "^2.2.0",
"gulp-uglify": "^2.0.0",
"istanbul": "^0.4.3",
"mocha": "^3.0.2",
"phantomjs-prebuilt": "^2.1.12",
"run-sequence": "^1.2.2",
"supertest": "^2.0.0",
"wrench": "^1.5.9"
},
"repository": {
"type": "git",
"url": "https://hub.jazz.net/git/pdhoward/chaoticweather"
},
"engines": {
"node": ">= 4.x",
"npm": ">= 3.x"
},
"contributors": [
{
"name": "Patrick Howard",
"email": "[email protected]"
},
{
"name": "Dave Rogenmoser",
"email": "[email protected]"
},
{
"name": "Chris Hull",
"email": "[email protected]"
},
{
"name": "JP Morgan",
"email": "[email protected]"
}
],
"license": "MIT"
}