-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1011 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": "email-alerts",
"version": "1.0.0",
"description": "Weekly Emails",
"main": "src/index.ts",
"scripts": {
"test": "ts-mocha -p . ./**/*.spec.ts",
"start": "npm run build:live",
"build": "tsc",
"build:live": "nodemon --exec ts-node -- ./src/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/garysieling/email-alerts.git"
},
"author": "Gary Sieling",
"license": "MIT",
"bugs": {
"url": "https://github.com/garysieling/email-alerts/issues"
},
"homepage": "https://github.com/garysieling/email-alerts#readme",
"devDependencies": {
"@types/mocha": "^2.2.41",
"@types/node": "^8.0.20",
"codecov": "^2.3.1",
"mocha": "^3.5.0",
"ts-mocha": "^1.0.3",
"typescript": "^2.4.2"
},
"dependencies": {
"@types/lodash": "^4.14.73",
"@types/sqlite3": "^3.1.0",
"google-spreadsheet": "^2.0.4",
"guid": "0.0.12",
"lodash": "^4.17.4",
"mailgun-js": "^0.13.1",
"sqlite3": "^3.1.9"
}
}