-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
52 lines (52 loc) · 1.24 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
{
"name": "tts-monorepo",
"private": true,
"workspaces": [
"packages/*"
],
"description": "Monorepo for text-to-speech tools",
"repository": {
"type": "git",
"url": "git+https://github.com/eheikes/tts.git"
},
"keywords": [
"aws",
"amazon",
"polly",
"text",
"speech",
"tts"
],
"author": "Eric Heikes <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/eheikes/tts/issues"
},
"homepage": "https://github.com/eheikes/tts#readme",
"scripts": {
"lint": "npm run lint --workspaces --if-present",
"report-coverage": "npm run report-coverage --workspaces --if-present",
"test": "npm run test --workspaces --if-present"
},
"devDependencies": {
"cross-env": "^5.2.0",
"jasmine": "^3.5.0",
"nyc": "^15.0.1",
"proxyquire": "^1.8.0",
"standard": "^17.1.0"
},
"dependencies": {
"tts-cli": "file:packages/tts-cli"
},
"resolutions": {
"**/@grpc/grpc-js": ">=1.1.8",
"**/@npmcli/git": ">=2.0.8",
"**/dot-prop": ">=5.1.1 <7",
"**/json-schema": ">=0.4.0",
"**/kind-of": ">=6.0.3",
"**/node-forge": ">=0.10.0",
"**/sanitize-html": ">=2.3.2",
"**/tar": ">=4.4.19",
"**/trim-newlines": ">=3.0.1"
}
}