-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
39 lines (39 loc) · 914 Bytes
/
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
{
"name": "express-ifttt-webhook",
"version": "0.2.3",
"description": "A middleware to plug your Express app into IFTTT.com",
"repository": {
"type": "git",
"url": "https://github.com/b00giZm/express-ifttt-webhook.git"
},
"main": "index.js",
"scripts": {
"test": "node_modules/mocha/bin/mocha"
},
"keywords": [
"express",
"middleware",
"ifttt",
"webhook"
],
"author": "Pascal Cremer <[email protected]> (http://codenugget.co)",
"license": "MIT",
"bugs": {
"url": "https://github.com/b00giZm/express-ifttt-webhook/issues"
},
"devDependencies": {
"chai": "^1.10.0",
"express": "^4.10.4",
"mocha": "^2.0.1",
"proxyquire": "^1.3.0",
"sinon": "^1.12.2",
"supertest": "^0.15.0"
},
"dependencies": {
"async": "^0.9.0",
"lodash": "^2.4.1",
"multiline": "^1.0.1",
"validator": "^3.22.2",
"xml2js": "^0.4.4"
}
}