-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 965 Bytes
/
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
{
"name": "webext-boilerplate",
"version": "1.0.0",
"description": "",
"main": "index.js",
"keywords": [],
"author": "Guillaume 'Outpox' Migeon",
"license": "ISC",
"scripts": {
"build": "node fuse.js --production; node build.js",
"dev": "node fuse.js",
"debug": "./node_modules/.bin/web-ext run --source-dir dist",
"debugosx": "./node_modules/.bin/web-ext run --source-dir dist -f /Applications/FirefoxNightly.app/Contents/MacOS/firefox-bin"
},
"standard": {
"parser": "typescript-eslint-parser",
"plugins": [
"typescript"
],
"ignore": [
"fuse.js",
"dist/js/panel.js"
],
"global": [
"browser"
]
},
"dependencies": {},
"devDependencies": {
"fs-extra": "^7.0.1",
"fuse-box": "^3.7.1",
"typescript": "^3.4.1",
"uglify-es": "^3.3.9",
"web-ext": "^3.0.0",
"web-ext-types": "^3.1.0",
"webextension-polyfill": "^0.4.0",
"zip-dir": "^1.0.2"
}
}