-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 792 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 792 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "hoxhunt-hunter",
"version": "1.0.3",
"description": "",
"main": "",
"scripts": {
"deps": "npm install",
"stage": "mkdir dist || echo Dist already exists.",
"bundle": "esbuild src/gmailJsLoader.js src/extension.js --outdir=dist/ --bundle --sourcemap --target=es6 --define:DEBUG=false",
"debug": "esbuild src/gmailJsLoader.js src/extension.js --outdir=dist/ --bundle --sourcemap --target=es6 --define:DEBUG=true",
"devbuild": "cp ../gmail.js/src/gmail.js node_modules/gmail-js/src/ && npm run build",
"build": "npm run stage && npm run bundle"
},
"author": "Jostein kjønigsen and Mark Peterson",
"license": "ISC",
"dependencies": {
"gmail-js": "^1.1.16",
"jquery": "^4.0.0"
},
"devDependencies": {
"esbuild": "^0.28.0"
}
}