-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
90 lines (90 loc) · 2.29 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
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
{
"name": "advanced-github-notifier",
"version": "1.10.1",
"description": "A Firefox extension, that not only shows a count of notifications, but also shows notification popups and has a popup that gives direct access to the notifications.",
"main": "manifest.json",
"scripts": {
"lint:js": "eslint scripts/ test/ manifest.json",
"lint:css": "stylelint \"styles/*.css\"",
"lint:webext": "web-ext lint",
"lint": "npm run lint:js && npm run lint:css && npm run lint:webext",
"test:js": "nyc ava",
"test": "npm run lint && npm run test:js",
"start": "web-ext run",
"build": "tx pull && web-ext build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/freaktechnik/advanced-github-notifier.git"
},
"author": "Martin Giger",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/freaktechnik/advanced-github-notifier/issues"
},
"files": [
"scripts/*",
"styles/*",
"images/*",
"manifest.json",
"*.html"
],
"homepage": "https://github.com/freaktechnik/advanced-github-notifier#readme",
"devDependencies": {
"@freaktechnik/eslint-config-extension": "^10.1.6",
"@freaktechnik/eslint-config-test": "^10.1.6",
"ava": "^6.2.0",
"eslint": "^9.14.0",
"jsdom": "^25.0.1",
"mkdirp": "^3.0.1",
"nyc": "^17.1.0",
"sinon": "^19.0.2",
"sinon-chrome": "^3.0.1",
"stylelint": "^16.12.0",
"stylelint-config-standard": "^36.0.1",
"stylelint-no-unsupported-browser-features": "^8.0.2",
"web-ext": "^8.3.0"
},
"stylelint": {
"extends": "stylelint-config-standard",
"plugins": [
"stylelint-no-unsupported-browser-features"
],
"rules": {
"color-named": "always-where-possible",
"plugin/no-unsupported-browser-features": true
}
},
"nyc": {
"reporter": [
"lcov",
"text"
]
},
"engines": {
"node": ">= 16.7.0"
},
"private": true,
"browserslist": [
"last 1 Firefox versions",
"last 1 FirefoxAndroid versions"
],
"webExt": {
"ignoreFiles": [
"test",
"coverage",
"package*.json",
"node_modules",
".*",
"web-ext-artifacts",
"*.md"
]
},
"ava": {
"timeout": "2m"
},
"type": "module",
"dependencies": {
"@freaktechnik/eslint-config-node": "^10.1.6"
}
}