-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 976 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
{
"name": "select-and-speak",
"version": "1.0.1",
"description": "Select and speak",
"main": "lib/speech.js",
"scripts": {
"start": "webpack-dev-server --devtool eval --progress --colors --content-base demo/build --hot --inline --mode development",
"deploy": "NODE_ENV=production webpack -p --config webpack.production.config.js --mode production",
"compile": "npx babel -d lib/ src/",
"prepublish": "npm run compile"
},
"author": "tom-s",
"keywords": [
"speech synthesis",
"speak",
"select",
"text",
"text selection",
"tts"
],
"license": "ISC",
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"babel-loader": "^8.0.4",
"json-loader": "^0.5.4",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.9"
},
"dependencies": {
"lodash": "^4.17.11",
"rangy": "^1.3.0",
"speak-tts": "^2.0.6"
}
}