forked from mozilla/voicefill
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.48 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
{
"name": "voicefill",
"id": "[email protected]",
"description": "This is a simple WebExtension that adds support to use Speech To Text as an input method in web pages.",
"version": "1.4.3",
"author": {
"name": "Andre Natal & Fabrice Desré",
"url": "https://github.com/mozilla/voicefill"
},
"bugs": {
"url": "https://github.com/mozilla/voicefill/issues"
},
"devDependencies": {
"eslint": "^5.7.0",
"eslint-plugin-mozilla": "^0.16.1",
"eslint-plugin-no-unsanitized": "^3.0.2",
"markdown": "^0.5.0",
"npm-run-all": "^4.1.3",
"prettier": "^1.14.3",
"web-ext": "^5.5.0"
},
"dependencies": {
"bodymovin": "^4.13.0",
"speaktome-api": "^0.2.1",
"testpilot-ga": "^0.3.0",
"webextension-polyfill": "^0.3.1"
},
"homepage": "https://github.com/mozilla/voicefill#readme",
"keywords": [],
"license": "MPL-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/mozilla/voicefill.git"
},
"scripts": {
"build": "web-ext build -s extension --overwrite-dest",
"format": "prettier 'extension/*.{js,css}' --tab-width=2 --arrow-parens=always --trailing-comma=es5 --no-bracket-spacing --write",
"lint": "npm-run-all lint:*",
"lint:extension": "web-ext lint -s extension --ignore-files js/vendor/* --self-hosted",
"lint:js": "eslint extension",
"once": "web-ext run -s extension",
"package": "npm run build && mv web-ext-artifacts/*.zip addon.xpi",
"postinstall": "bin/postinstall.sh"
}
}