-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.45 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"title": "Notification Sound",
"name": "notification-sound",
"version": "1.4.0",
"description": "Makes a sound when a notification is shown",
"author": "Martin Giger (https://humanoids.be)",
"license": "MPL-2.0",
"private": true,
"scripts": {
"lint:js": "eslint scripts/ manifest.json",
"lint:css": "stylelint styles/*.css",
"lint:webext": "web-ext lint",
"test": "npm run lint:js && npm run lint:css && npm run lint:webext",
"start": "web-ext run",
"build": "web-ext build -i README.md package.json package-lock.json images/Notification_Sound_Icon_Square.svg"
},
"homepage": "https://addons.mozilla.org/en-US/firefox/addon/notification-sound/",
"repository": {
"type": "git",
"url": "https://github.com/freaktechnik/notification-sounds.git"
},
"bugs": {
"url": "https://github.com/freaktechnik/notification-sounds/issues"
},
"devDependencies": {
"@freaktechnik/eslint-config-extension": "^10.1.6",
"eslint": "^9.14.0",
"stylelint": "^16.12.0",
"stylelint-config-standard": "^36.0.1",
"stylelint-no-unsupported-browser-features": "^8.0.2",
"web-ext": "^8.3.0"
},
"browserslist": [
"Firefox >= 63"
],
"stylelint": {
"extends": "stylelint-config-standard",
"plugins": [
"stylelint-no-unsupported-browser-features"
],
"rules": {
"color-named": "always-where-possible",
"plugin/no-unsupported-browser-features": true
}
},
"type": "module"
}