-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
68 lines (68 loc) · 2.29 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
{
"name": "google-home-speaker",
"version": "0.0.11",
"description": "Command line client for chromeless",
"scripts": {
"clean": "rimraf lib",
"test": "cross-env BABEL_ENV=commonjs mocha --compilers js:babel-register --require babel-polyfill --recursive",
"test:watch": "npm test -- --watch",
"lint": "eslint -c google src test",
"build": "cross-env BABEL_ENV=commonjs babel src --out-dir lib",
"codecov": "mkdir -p .nyc_output && nyc report --reporter=text-lcov > coverage.lcov && codecov -t 24f63576-b4c3-43c8-9c62-83e431ebe61f",
"coverage": "mkdir -p .nyc_output && nyc --reporter=lcov --reporter=text npm run test",
"prepublishOnly": "npm i && npm run clean && npm run lint && npm run coverage && npm run build",
"requirements-check": "node check-version.js",
"postinstall": "npm run requirements-check"
},
"bin": {
"google-home-speaker": "index.js"
},
"main": "lib/google-home-speaker.js",
"files": [
"lib",
"index.js",
"check-version.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/freddiefujiwara/google-home-speaker.git"
},
"keywords": [
"cli",
"tts",
"speaker",
"google-home"
],
"author": "Fumikazu Fujiwara <npm@ze.gs> (http://freddiefujiwara.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/freddiefujiwara/google-home-speaker/issues"
},
"homepage": "https://github.com/freddiefujiwara/google-home-speaker#readme",
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.24.1",
"chai": "^4.0.2",
"codecov": "^3.1.0",
"cross-env": "^5.0.1",
"eslint": "^4.1.1",
"eslint-config-google": "^0.9.1",
"mocha": "^5.2.0",
"nyc": "^11.1.0",
"rimraf": "^2.6.1"
},
"dependencies": {
"commander": "^6.2.0",
"google-home-audioplay": "*",
"google-tts-api": "^2.0.0",
"langdetect": "^0.2.1",
"semver": "^7.3.4"
},
"engines": {
"node": ">=7.6"
}
}