-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 991 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 991 Bytes
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
{
"name": "web-voice-command",
"version": "1.0.16",
"description": "Making voice command on the web better",
"main": "index.js",
"scripts": {
"test": "jest",
"format": "prettier --write \"*.js\""
},
"repository": {
"type": "git",
"url": "https://github.com/matoval/web-voice-command.git"
},
"keywords": [
"speech-recognition",
"web-speech-API",
"web-speech",
"voice-command",
"voice-control"
],
"author": "Matthew Sandoval",
"license": "MIT",
"bugs": {
"url": "https://github.com/matoval/web-voice-command/issues"
},
"homepage": "https://github.com/matoval/web-voice-command",
"devDependencies": {
"corti": "^0.2.0",
"eslint": "^7.2.0",
"husky": "^4.2.5",
"jest": "^26.0.1",
"lint-staged": "^10.2.10",
"prettier": "^2.0.5"
},
"dependencies": {},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm run test"
}
},
"lint-staged": {
"*.js": "prettier --write"
}
}