forked from JamesBrill/react-speech-recognition
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 948 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
{
"name": "react-speech-recognition",
"version": "1.0.7",
"description": "A React component that converts speech from the microphone to text.",
"main": "lib/index.js",
"scripts": {
"build": "babel src --out-dir lib && webpack -p"
},
"repository": {
"type": "git",
"url": "https://github.com/FoundersFactory/react-speech-recognition.git"
},
"keywords": ["react", "reactjs", "speech", "recognition"],
"files": ["dist", "lib", "src"],
"author": "James Brill <[email protected]>",
"license": "MIT",
"dependencies": {
"react": "^15.4.1"
},
"devDependencies": {
"babel-core": "^6.21.0",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.9",
"babel-preset-es2015": "^6.18.0",
"babel-preset-react": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"eslint": "^3.12.0",
"eslint-plugin-babel": "^4.0.0",
"eslint-plugin-react": "^6.8.0",
"webpack": "^1.14.0"
}
}