-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
39 lines (39 loc) · 963 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": "react-speak",
"version": "1.0.6",
"description": "Higher-order React component that wraps the web SpeechRecognition API and converts speech from microphone to text.",
"main": "lib/index.js",
"scripts": {
"build": "babel src --out-dir lib && webpack -p"
},
"repository": "https://github.com/ahrjarrett/react-speak",
"author": {
"name": "Andrew Jarrett",
"email": "[email protected]",
"url": "https://github.com/ahrjarrett"
},
"license": "BSD",
"keywords": [
"react",
"reactjs",
"redux",
"hoc",
"speech",
"audio",
"react-component",
"component"
],
"dependencies": {
"prop-types": "^15.6.1",
"react": "^16.3.2"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "^6.21.0",
"babel-loader": "^6.2.9",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"webpack": "^1.14.0"
}
}