-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
46 lines (46 loc) · 1.2 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
{
"title": "Popup Tab",
"name": "popup-tab",
"version": "0.3.1",
"description": "Popup current tab",
"author": "eight04 <eight04@gmail.com>",
"license": "MIT",
"scripts": {
"test": "eslint \"**/*.js\" && npm run build && web-ext lint",
"start": "web-ext run",
"preversion": "npm test",
"version": "npm run build && git add .",
"build": "sync-version src/static/manifest.json && rollup -c",
"postversion": "web-ext build && git archive -o web-ext-artifacts/source.zip HEAD && git push --follow-tags"
},
"devDependencies": {
"event-lite": "^0.1.2",
"rollup": "^2.53.2",
"rollup-plugin-cjs-es": "^1.0.1",
"rollup-plugin-copy-glob": "^0.3.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^7.0.2",
"sync-version": "^1.0.1",
"tiny-glob": "^0.2.9",
"web-ext": "^6.2.0",
"webext-menus": "^0.3.2"
},
"bugs": {
"url": "https://github.com/eight04/popup-tab/issues",
"email": "eight04@gmail.com"
},
"repository": "eight04/popup-tab",
"private": true,
"webExt": {
"sourceDir": "build",
"ignoreFiles": [
"*.map"
],
"build": {
"overwriteDest": true
}
},
"eslintIgnore": [
"build"
]
}