-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
31 lines (31 loc) · 928 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
{
"name": "html-form-send-email-via-google-script-without-server",
"version": "1.0.0",
"description": "tutorial showing how to save data to a google doc spreadsheet from any html form (including sending emails!)",
"main": "static-server.js",
"scripts": {
"start": "./node_modules/.bin/nodemon static-server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dwyl/html-form-send-email-via-google-script-without-server.git"
},
"keywords": [
"tutorial",
"google",
"docs",
"email",
"form"
],
"author": "nelsonic @dwyl",
"license": "GPL-2.0",
"bugs": {
"url": "https://github.com/dwyl/html-form-send-email-via-google-script-without-server/issues"
},
"homepage": "https://github.com/dwyl/html-form-send-email-via-google-script-without-server#readme",
"devDependencies": {
"hapi": "^11.1.2",
"inert": "^3.2.0",
"nodemon": "^1.8.1"
}
}