diff options
Diffstat (limited to 'package.json')
-rw-r--r-- | package.json | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/package.json b/package.json new file mode 100644 index 0000000..33ce552 --- /dev/null +++ b/package.json @@ -0,0 +1,68 @@ +{ + "name": "librejs", + "license": "GPL-3.0+", + "author": "Loic J. Duros", + "homepage": "gnu.org/software/librejs/", + "version": "6.0.8.20150117", + "title": "GNU LibreJS", + "id": "jid1-KtlZuoiikVfFew@jetpack", + "description": "GNU LibreJS is an add-on for Mozilla-based browsers (IceCat, Firefox, Abrowser, Iceweasel)\n that prevents the execution of nonfree nontrivial JavaScript as described in \"The Javascript Trap\": http://www.gnu.org/philosophy/javascript-trap.html", + "main": "lib/main", + "icon": "data/widget/images/librejs-32.png", + "icon64": "data/widget/images/librejs-64.png", + "dependencies": [ + "notification-box", + "addon-sdk", + "menuitems", + "vold-utils" + ], + "permissions": { + "private-browsing": true, + "unsafe-content-script": true + }, + "preferences": [ + { + "name": "whitelist", + "title": "Whitelist domain, separated by comma, omit protocol, e.g.: gnu.org, wildcard is *", + "type": "string", + "value": "" + }, + { + "name": "complaint_tab", + "title": "Display complaint tab on sites where nonfree nontrivial JavaScript is detected", + "type": "bool", + "value": true + }, + { + "name": "display_notifications", + "title": "Display notifications of the JavaScript code being analyzed by LibreJS.", + "type": "bool", + "value": false + }, + { + "name": "complaint_email_subject", + "title": "Complaint email subject", + "description": "Initial subject line used in complaint emails", + "type": "string", + "value": "Please make your JavaScript free" + }, + { + "name": "complaint_email_body", + "title": "Complaint email body", + "description": "Initial body text used in complaint emails", + "type": "string", + "value": "I could not use your site because it requires running JavaScript code which is not free software. Since a nonfree program disrespects the user's freedom, I decided not to run it. \\n\\nSee http://gnu.org/philosophy/javascript-trap.html for more information, and please make your JavaScript code free." + } + ], + "scripts": { + "pretest": "jshint ./lib/ ./data/ --exclude ./data/settings/third-party/", + "test": "cfx test -v" + }, + "jscsConfig": { + "preset": "google", + "validateIndentation": 4 + }, + "jshintConfig": { + "moz": true + } +} |