-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 991 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
40
{
"name": "custom-google-forms",
"version": "2.0.0",
"description": "Turn regular Google Spreadsheets into customizable forms!",
"main": "app.js",
"scripts": {
"run": "node app.js",
"dev": "node app.js &> output.txt",
"docs": "echo 'Note: Requires Dev-Dependencies to be Installed' && jsdoc -c jsdoc.json",
"start": "node app.js",
"test": "node spreadsheet.js"
},
"keywords": [],
"author": "Marvin Lee",
"license": "ISC",
"dependencies": {
"ejs": "^3.1.5",
"express": "^4.17.1",
"google-spreadsheet": "^3.1.15",
"minimist": ">=1.2.2",
"multer": "^1.4.2",
"serve-favicon": "^2.5.0",
"uuid": "^8.3.2"
},
"devDependencies": {
"docdash": "^1.2.0",
"jsdoc": "^3.6.6"
},
"engines": {
"node": ">=13.9.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/malee31/CustomGoogleForm.git"
},
"bugs": {
"url": "https://github.com/malee31/CustomGoogleForm/issues"
},
"homepage": "https://github.com/malee31/CustomGoogleForm#readme"
}