forked from JamesBrill/react-speech-recognition
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.13 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "react-speech-recognition",
"version": "3.7.0",
"description": "💬Speech recognition for your React app",
"main": "lib/index.js",
"scripts": {
"build": "babel src -d lib --ignore '**/*.test.js'",
"lint": "eslint src tests",
"test": "jest --testPathIgnorePatterns=example",
"coverage": "npm run coverage:collect && npm run coverage:report",
"coverage:collect": "jest --testPathIgnorePatterns=example --collectCoverageFrom=src/**/*.{js,jsx} --coverage",
"coverage:report": "open coverage/lcov-report/index.html",
"prepublishOnly": "npm run build",
"update-example": "cp -R src/ example/src/SpeechRecognition",
"run-example": "cd example && npm i && npm start",
"dev": "npm run watch & npm run update-example && npm run run-example",
"watch": "npm-watch update-example",
"bump": "npm version patch -m \"v%s\" && git push --tags"
},
"watch": {
"update-example": "src/*.js"
},
"repository": {
"type": "git",
"url": "https://github.com/JamesBrill/react-speech-recognition.git"
},
"keywords": [
"react",
"reactjs",
"speech",
"recognition"
],
"files": [
"lib"
],
"author": "James Brill <[email protected]>",
"license": "MIT",
"peerDependencies": {
"react": ">=16.8.0"
},
"devDependencies": {
"@babel/cli": "^7.10.3",
"@babel/core": "^7.10.3",
"@babel/preset-env": "^7.10.3",
"@babel/preset-react": "^7.10.1",
"@testing-library/react-hooks": "^3.3.0",
"babel-eslint": "^10.0.2",
"eslint": "^6.0.1",
"eslint-config-standard": "^13.0.1",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jest": "^23.17.1",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-react": "^7.14.2",
"eslint-plugin-standard": "^4.0.0",
"jest": "^26.1.0",
"npm-watch": "^0.6.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-test-renderer": "16.13.1"
},
"jest": {
"coverageThreshold": {
"global": {
"branches": 80,
"functions": 80,
"lines": 80,
"statements": 80
}
}
}
}