Merge pull request #99 from vujita/issues-98

Issues 98
This commit is contained in:
Alan Hamlett
2021-01-11 09:19:03 -08:00
committed by GitHub
3 changed files with 13 additions and 19 deletions

View File

@@ -30,10 +30,7 @@
"default_title": "WakaTime",
"default_popup": "popup.html"
},
"options_ui": {
"page": "options.html",
"chrome_style": false
},
"options_page": "options.html",
"browser_specific_settings": {
"gecko": {
"id": "addon@wakatime.com",

15
package-lock.json generated
View File

@@ -2987,7 +2987,6 @@
"version": "15.7.0",
"resolved": "https://registry.npmjs.org/create-react-class/-/create-react-class-15.7.0.tgz",
"integrity": "sha512-QZv4sFWG9S5RUvkTYWbflxeZX+JG7Cz0Tn33rQBJ+WFQTqTfUTjMjiv9tnfXazjsO5r0KhPs+AqCjyrQX6h2ng==",
"dev": true,
"requires": {
"loose-envify": "^1.3.1",
"object-assign": "^4.1.1"
@@ -9849,14 +9848,6 @@
"prop-types": "^15.6.2"
}
},
"react-addons-css-transition-group": {
"version": "15.6.2",
"resolved": "https://registry.npmjs.org/react-addons-css-transition-group/-/react-addons-css-transition-group-15.6.2.tgz",
"integrity": "sha1-nkN2vPQLUhfRTsaFUwgc7ksIptY=",
"requires": {
"react-transition-group": "^1.2.0"
}
},
"react-dom": {
"version": "16.14.0",
"resolved": "https://registry.npmjs.org/react-dom/-/react-dom-16.14.0.tgz",
@@ -13174,9 +13165,9 @@
}
},
"webextension-polyfill": {
"version": "0.2.1",
"resolved": "https://registry.npmjs.org/webextension-polyfill/-/webextension-polyfill-0.2.1.tgz",
"integrity": "sha1-zfyRJgMwOfFxNVMVfTW+/x1Nb0o="
"version": "0.4.0",
"resolved": "https://registry.npmjs.org/webextension-polyfill/-/webextension-polyfill-0.4.0.tgz",
"integrity": "sha512-oreMp+EoAo1pzRMigx4jB5jInIpx6NTCySPSjGyLLee/dCIPiRqowCEfbFP8o20wz9SOtNwSsfkaJ9D/tRgpag=="
},
"webidl-conversions": {
"version": "4.0.2",

View File

@@ -10,12 +10,18 @@
"postinstall": "gulp postinstall",
"validate": "npm ls"
},
"pre-commit": ["lint"],
"pre-commit": [
"lint"
],
"jest": {
"testFileExtensions": ["jest.js"],
"testFileExtensions": [
"jest.js"
],
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"testDirectoryName": "tests",
"unmockedModulePathPatterns": ["<rootDir>/node_modules/react"]
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react"
]
},
"private": true,
"devDependencies": {