-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
33 lines (33 loc) · 939 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
{
"name": "google-meet-ptt",
"version": "1.0.6",
"description": "Chrome extension to enable a push to talk functionality in google meet",
"main": "index.js",
"scripts": {
"watch": "webpack --config webpack/webpack.dev.js --watch",
"build": "webpack --config webpack/webpack.prod.js",
"prepare-for-deploy": "rm dist.zip && zip -r dist.zip dist",
"clean": "rimraf dist",
"test": "npx jest"
},
"author": "JCW Services",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jcw-os/google-meet-ptt.git"
},
"dependencies": {},
"devDependencies": {
"@types/chrome": "0.0.100",
"@types/jest": "^25.1.4",
"copy-webpack-plugin": "^5.1.1",
"jest": "^25.1.0",
"ts-jest": "^25.2.1 ",
"rimraf": "^3.0.2 ",
"ts-loader": "^6.2.1",
"typescript": "~3.8.3 ",
"webpack": "~4.42.0",
"webpack-cli": "~3.3.11",
"webpack-merge": "~4.2.2"
}
}