forked from mozilla/voicefill
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.39 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": "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.3.0",
"author": {
"name": "Andre Natal & Fabrice Desré",
"url": "https://github.com/mozilla/speaktome"
},
"bugs": {
"url": "https://github.com/mozilla/speaktome/issues"
},
"devDependencies": {
"eslint": "4.1.1",
"eslint-plugin-mozilla": "0.3.2",
"npm-run-all": "4.0.2",
"prettier": "1.5.3",
"web-ext": "1.10.0"
},
"dependencies": {
"bodymovin": "4.9.0",
"dompurify": "0.9.0",
"testpilot-ga": "0.3.0"
},
"homepage": "https://github.com/mozilla/speaktome#readme",
"keywords": [],
"license": "MPL-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/mozilla/speaktome.git"
},
"scripts": {
"build": "web-ext build -s extension --overwrite-dest",
"format": "prettier 'extension/!(bodymovin|purify.min|testpilot-ga|webrtc_vad).{js,css}' --tab-width=4 --write",
"lint": "npm-run-all lint:*",
"lint:extension": "web-ext lint -s extension --ignore-files bodymovin.js purify.min.js testpilot-ga.js webrtc_vad.js --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"
}
}