-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 802 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 802 Bytes
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
{
"name": "launchchimp",
"version": "0.0.1",
"description": "A Launchrock Mailchimp API Integration Daemon",
"repository": {
"type" : "git",
"url": "https://github.com/timols/launchchimp.git"
},
"main": "launchchimp.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node lib/launchchimp.js | ./node_modules/bunyan/bin/bunyan"
},
"keywords": [
"Launchrock",
"Mailchimp",
"API"
],
"author": "Tim Olshansky (@timols)",
"license": "BSD-2-Clause",
"dependencies": {
"daemon": "~1.1.0",
"request": "~2.55.0",
"request-promise": "~0.4.2",
"fast-csv": "~0.6.0",
"q": "~1.4.0",
"bunyan": "~1.3.5",
"nodemailer": "~1.3.4"
},
"engines": {
"node": ">= 0.10.21",
"npm": ">= 1.3.11"
}
}