-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
42 lines (42 loc) · 1.03 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
{
"name": "open-new-tab-after-current-tab",
"version": "0.4.7",
"description": "Opens new tab after the active tab, instead of last position.",
"homepage": "https://dev.ligny.org/Open-New-Tab-After-Current-Tab/",
"author": "Arnaud Ligny",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ArnaudLigny/Open-New-Tab-After-Current-Tab.git"
},
"bugs": {
"url": "https://github.com/ArnaudLigny/Open-New-Tab-After-Current-Tab/issues"
},
"main": "gulpfile.js",
"scripts": {
"test": "xo",
"build": "gulp dist",
"release:cws": "cd build && chrome-webstore-upload upload --auto-publish",
"release": "npm run build && npm run release:cws"
},
"devDependencies": {
"chrome-webstore-upload-cli": "^2.2",
"del": "^6.1",
"gulp": "^4.0",
"gulp-zip": "^5.1",
"xo": "^0.56"
},
"xo": {
"space": true,
"envs": [
"browser",
"webextensions"
],
"rules": {
"unicorn/prefer-module": "off"
},
"ignores": [
"build/**"
]
}
}