-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
44 lines (44 loc) · 1.04 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
{
"name": "f-notifier",
"version": "2.8.5",
"description": "Displays your Facebook notifications unread count.",
"homepage": "https://dev.ligny.org/F-Notifier",
"author": "Arnaud Ligny",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ArnaudLigny/F-Notifier.git"
},
"bugs": {
"url": "https://github.com/ArnaudLigny/F-Notifier/issues"
},
"main": "gulpfile.js",
"scripts": {
"test": "xo",
"build": "gulp dist",
"release:cws": "cd build && chrome-webstore-upload upload --auto-publish",
"release:amo": "cd build && web-ext-submit",
"release": "npm run build && npm run release:cws && npm run release:amo"
},
"devDependencies": {
"chrome-webstore-upload-cli": "^2.2",
"del": "^6.1",
"gulp": "^4.0",
"gulp-zip": "^5.1",
"web-ext-submit": "^7.6",
"xo": "^0.55"
},
"xo": {
"space": true,
"envs": [
"browser",
"webextensions"
],
"rules": {
"unicorn/prefer-module": "off"
},
"ignores": [
"build/**"
]
}
}