diff --git a/addon/package.json b/addon/package.json index 5a3cb59..f2ae577 100644 --- a/addon/package.json +++ b/addon/package.json @@ -1,38 +1,44 @@ { - "name": "tab-data-addon", - "title": "Tab Data", - "id": "jid1-4ogjq7MUzAiCOw", - "description": "Provides user with tab related stats/data", - "author": "Robert Byrne", - "license": "GNU GPL v3", - "version": "0.2.7", - "permissions": { - "private-browsing": true - }, - "preferences": [{ - "name": "memoryInterval", - "title": "How many seconds between memory data collection?", - "type": "string", - "value": "10" - }, { - "name": "memoryTracking", - "title": "Enable memory usage tracking?", - "type": "bool", - "value": true - }, { - "name": "memoryUsageOnTabTitles", - "title": "Show memory usage in tab titles?", - "type": "bool", - "value": true - }, { - "name": "memoryCautionThreshold", - "title": "Memory caution threshold? (In megabytes)", - "type": "string", - "value": "50" - }, { - "name": "memoryCautionColor", - "title": "Color of tab title if threshold exceeded?", - "type": "string", - "value": "#FF5050" - }] + "name": "tab-data-addon", + "title": "Tab Data", + "id": "jid1-4ogjq7MUzAiCOw", + "description": "Provides user with tab related stats/data", + "author": "Robert Byrne", + "license": "GNU GPL v3", + "version": "0.3.0", + "permissions": { + "private-browsing": true + }, + "preferences": [ + { + "name": "memoryInterval", + "title": "How many seconds between memory data collection?", + "type": "string", + "value": "10" + }, + { + "name": "memoryTracking", + "title": "Enable memory usage tracking?", + "type": "bool", + "value": true + }, + { + "name": "memoryUsageOnTabTitles", + "title": "Show memory usage in tab titles?", + "type": "bool", + "value": true + }, + { + "name": "memoryCautionThreshold", + "title": "Memory caution threshold? (In megabytes)", + "type": "string", + "value": "50" + }, + { + "name": "memoryCautionColor", + "title": "Color of tab title if threshold exceeded?", + "type": "string", + "value": "#FF5050" + } + ] } diff --git a/package.json b/package.json index 73401a2..5449b9c 100644 --- a/package.json +++ b/package.json @@ -1,29 +1,29 @@ { - "name": "tab-data-firefox", - "version": "0.2.7", - "description": "Firefox addon providing user with tab related stats/data", - "main": "addon/lib/main.js", - "scripts": { - "test": "echo \"Error: no test specified\" && exit 1" - }, - "repository": { - "type": "git", - "url": "https://github.com/bobbyrne01/tab-data-firefox.git" - }, - "author": "Robert Byrne", - "license": "GNU GPL v3", - "bugs": { - "url": "https://github.com/bobbyrne01/tab-data-firefox/issues" - }, - "homepage": "https://github.com/bobbyrne01/tab-data-firefox", - "devDependencies": { - "grunt": "^0.4.5", - "grunt-contrib-csslint": "^0.4.0", - "grunt-contrib-jshint": "^0.11.0", - "grunt-contrib-watch": "^0.6.1", - "grunt-html-validation": "^0.1.18", - "grunt-jsbeautifier": "^0.2.7", - "grunt-notify": "^0.4.1", - "grunt-release": "^0.11.0" - } + "name": "tab-data-firefox", + "version": "0.3.0", + "description": "Firefox addon providing user with tab related stats/data", + "main": "addon/lib/main.js", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "repository": { + "type": "git", + "url": "https://github.com/bobbyrne01/tab-data-firefox.git" + }, + "author": "Robert Byrne", + "license": "GNU GPL v3", + "bugs": { + "url": "https://github.com/bobbyrne01/tab-data-firefox/issues" + }, + "homepage": "https://github.com/bobbyrne01/tab-data-firefox", + "devDependencies": { + "grunt": "^0.4.5", + "grunt-contrib-csslint": "^0.4.0", + "grunt-contrib-jshint": "^0.11.0", + "grunt-contrib-watch": "^0.6.1", + "grunt-html-validation": "^0.1.18", + "grunt-jsbeautifier": "^0.2.7", + "grunt-notify": "^0.4.1", + "grunt-release": "^0.11.0" + } }