-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.02 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
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "react-readalong-component",
"description": "A React component that uses the Speech Synthesis API to read text out loud by sentence or word while the user follows along with their mouse or finger",
"homepage": "https://talkingbibles.github.io/react-readalong-component",
"version": "1.1.4",
"license": "MIT",
"main": "src/Readalong.js",
"author": {
"name": "Talking Bibles",
"email": "[email protected]",
"url": "http://www.talkingbibles.org/"
},
"contributors": [
{
"name": "talkingbibles",
"email": "[email protected]",
"url": "http://www.talkingbibles.org/"
},
{
"name": "stphnclysmth",
"email": "[email protected]",
"url": "http://janineandclay.com/"
}
],
"repository": {
"type": "git",
"url": "https://github.com/TalkingBibles/react-readalong-component"
},
"bugs": {
"url": "https://github.com/TalkingBibles/react-readalong-component/issues",
"email": "[email protected]"
},
"peerDependencies": {
"react": "0.13.x"
},
"dependencies": {},
"devDependencies": {
"eslint": "^0.24.1",
"eslint-plugin-react": "^2.7.1",
"gulp": "^3.8.10",
"gulp-gh-pages": "^0.5.2",
"gulp-help": "^1.6.0",
"highlight.js": "^8.6.0",
"jest-cli": "^0.4.15",
"pepjs": "^0.3.0",
"react": "^0.13.3",
"react-component-gulp-tasks": "^0.1.1",
"react-tools": "^0.13.3",
"reactify": "^1.1.1"
},
"browser": "src/Readalong.js",
"browserify": {
"transform": [
"reactify"
]
},
"browserify-shim": {
"react": "global:React"
},
"jest": {
"unmockedModulePathPatterns": [
"react"
],
"modulePathIgnorePatterns": [
"/.publish/",
"/dist/",
"/example/"
],
"testDirectoryName": "tests"
},
"scripts": {
"test": "jest tests"
},
"keywords": [
"react",
"react-component",
"speech synthesis",
"tts",
"text-to-speech",
"web speech"
],
"engines": {
"node": ">=0.10.32",
"npm": ">=1.4.28"
}
}