This repository was archived by the owner on Nov 30, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
144 lines (144 loc) · 3.94 KB
/
package.json
File metadata and controls
144 lines (144 loc) · 3.94 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
{
"title": "Yandex.Mail notifier",
"name": "yandex-mail-notifier",
"version": "3.0.1",
"description": "Tunable notifier for Yandex.Mail",
"id": "jid0-vsitoD18LSTi4VQGGLCVmIoJSsU@jetpack",
"icon": "resource://@yandex-mail-notifier/data/icons/addon-logo.png",
"main": "index.js",
"author": {
"name": "Alexander Ivantsov",
"email": "alexivantsov@ya.ru"
},
"engines": {
"firefox": ">=38.0a1",
"fennec": ">=38.0a1"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ivantsov/yandex-mail-notifier.git"
},
"scripts": {
"lint": "eslint src data/scripts",
"lint:fix": "eslint --fix src data/scripts",
"test": "jest --coverage && coveralls < coverage/lcov.info",
"test:watch": "jest --watch",
"build": "webpack --config webpack.config.prod.js && jpm xpi",
"build:watch": "webpack --config webpack.config.dev.js --watch"
},
"jest": {
"testDirectoryName": "tests",
"unmockedModulePathPatterns": [
"<rootDir>/node_modules/react",
"<rootDir>/node_modules/react-dom",
"<rootDir>/node_modules/react-addons-test-utils"
]
},
"devDependencies": {
"babel-core": "^6.7.6",
"babel-jest": "^11.0.1",
"babel-loader": "^6.2.4",
"babel-plugin-syntax-object-rest-spread": "^6.5.0",
"babel-plugin-transform-es2015-destructuring": "^6.6.5",
"babel-plugin-transform-es2015-modules-commonjs": "^6.7.4",
"babel-plugin-transform-es2015-parameters": "^6.7.0",
"babel-plugin-transform-es2015-shorthand-properties": "^6.5.0",
"babel-plugin-transform-es2015-spread": "^6.6.5",
"babel-plugin-transform-object-rest-spread": "^6.6.5",
"babel-preset-react": "^6.5.0",
"coveralls": "^2.11.9",
"eslint": "^2.7.0",
"eslint-config-airbnb": "^7.0.0",
"eslint-plugin-jsx-a11y": "^0.6.2",
"eslint-plugin-react": "^4.3.0",
"jest-cli": "^11.0.1",
"react-addons-test-utils": "^15.0.1",
"webpack": "^1.12.15"
},
"dependencies": {
"react": "^15.0.1",
"react-dom": "^15.0.1",
"react-redux": "^4.4.5",
"redux": "^3.4.0",
"redux-thunk": "^2.0.1"
},
"permissions": {
"cross-domain-content": [
"https://mail.yandex.ru"
]
},
"preferences": [
{
"name": "newMessageNotification",
"type": "bool",
"title": "Show desktop notification when new email is received",
"value": true
},
{
"name": "newMessageSound",
"type": "bool",
"title": "Play sound notification when new email is received",
"value": false
},
{
"name": "unreadMessagesNotification",
"type": "menulist",
"title": "Remind about unread emails via desktop notification",
"value": 300000,
"options": [
{
"value": 0,
"label": "never"
},
{
"value": 300000,
"label": "every 5 min"
},
{
"value": 900000,
"label": "every 15 min"
},
{
"value": 1800000,
"label": "every 30 min"
}
]
},
{
"name": "unreadMessagesSound",
"type": "bool",
"title": "Remind about unread emails via sound notification",
"description": "Plays according to reminder interval. If that set to \"never\", the sound won't play",
"value": false
},
{
"name": "notAuthNotification",
"type": "menulist",
"title": "Notify if you're not logged in",
"description": "Every 5 min",
"value": 1,
"options": [
{
"value": 0,
"label": "off"
},
{
"value": 1,
"label": "only desktop notification"
},
{
"value": 2,
"label": "desktop and sound notification"
}
]
},
{
"name": "showPanel",
"type": "bool",
"title": "Show panel with unread emails",
"description": "If this flag isn't set, button will open Yandex.Mail",
"value": true
}
]
}