-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
68 lines (68 loc) · 1.71 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "mailman",
"version": "1.0.0",
"description": "A Google Sheets add on that allows you to email users when you want to!",
"main": "index.js",
"private": true,
"devDependencies": {
"browserify": "^13.1.0",
"browserify-shim": "^3.8.12",
"del": "^2.2.2",
"dialog-polyfill": "^0.4.6",
"event-stream": "^3.3.4",
"gulp": "^3.9.1",
"gulp-gjslint": "^0.1.5",
"gulp-htmlprocessor": "^0.1.1",
"gulp-jsdoc3": "^1.0.1",
"gulp-open": "^2.0.0",
"gulp-rename": "^1.2.2",
"gulp-replace": "^0.5.4",
"gulp-sass": "^4.0.1",
"gulp-uglify": "^2.0.0",
"gulp-util": "^3.0.7",
"gulp-webserver": "^0.9.1",
"jsdoc": "^3.4.3",
"promise": "^7.1.1",
"pubsub-js": "^1.5.4",
"stringify": "^5.1.0",
"uglify-js": "^3.4.9",
"vinyl-source-stream": "^1.1.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/coe-google-apps-support/Mailman.git"
},
"author": "CoE Google Support Team",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/coe-google-apps-support/Mailman/issues"
},
"homepage": "https://github.com/coe-google-apps-support/Mailman#readme",
"browser": {
"jquery": "./lib/jquery.js",
"jquery-ui": "./lib/jquery-ui.js",
"mdl": "./lib/material.js"
},
"browserify": {
"transform": "browserify-shim"
},
"browserify-shim": {
"jquery": "$",
"jquery-ui": {
"depends": [
"jquery"
]
},
"mdl": "componentHandler"
},
"dependencies": {
"gulp-if": "^2.0.2",
"gulp-sourcemaps": "^2.6.1",
"tinymce": "^4.7.2",
"vinyl-buffer": "^1.0.0",
"yargs": "^10.0.3"
}
}