-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
47 lines (47 loc) · 1014 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
38
39
40
41
42
43
44
45
46
47
{
"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 <eheikes@gmail.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/eheikes/tts/issues"
},
"homepage": "https://github.com/eheikes/tts#readme",
"scripts": {
"lint": "lerna run lint",
"report-coverage": "lerna run report-coverage",
"test": "lerna run test"
},
"devDependencies": {
"cross-env": "^5.2.0",
"jasmine": "^2.9.0",
"lerna": "^4.0.0",
"nyc": "^14.1.0",
"proxyquire": "^1.8.0",
"standard": "^12.0.1"
},
"dependencies": {
"tts-cli": "file:packages/tts-cli"
},
"resolutions": {
"**/dot-prop": "^5.1.1",
"**/kind-of": "^6.0.3",
"**/node-forge": "^0.10.0"
}
}