-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
27 lines (27 loc) · 862 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
{
"name": "email-summarise",
"version": "1.0.0",
"description": "Chrome extension of summarise and show important content from email to save time.",
"main": "",
"scripts": {
"deps": "npm install",
"stage": "mkdir dist || echo Dist already exists.",
"bundle": "browserify -o dist/gmailJsLoader.js src/gmailJsLoader.js && browserify -o dist/extension.js src/extension.js",
"devbuild": "cp ../gmail.js/src/gmail.js node_modules/gmail-js/src/ && npm run build",
"build": "npm run stage && npm run bundle"
},
"author": "Baiju Dodhia",
"license": "MIT",
"dependencies": {
"gmail-js": "^1.0.0",
"jquery": "^3.3.1",
"stemmer": "^1.0.5"
},
"devDependencies": {
"browserify": "16.5.1"
},
"repository": {
"type": "git",
"url": "https://github.com/baijudodhia/email-summarise-chrome-extension.git"
}
}