-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.41 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
{
"name": "earthy-player",
"version": "0.7.0",
"scripts": {
"build": "babel src --out-dir dist && chmod +x dist/cli/index.js",
"cli": "npm run build && node dist/cli/index.js",
"start": "babel-node src/cli/index.js",
"test-iso": "npx ava --verbose test/isolated/**/test.js",
"test-full": "npx ava test/full/**/test.js"
},
"license": "MIT",
"keywords": [
"text to speech"
],
"main": "dist/index.js",
"description": "Intelligently convert HTML to audio.",
"repository": {
"type": "git",
"url": "git+https://github.com/Arro/earthy-player.git"
},
"type": "module",
"dependencies": {
"@google-cloud/text-to-speech": "^3.4.0",
"axios": "^0.27.2",
"core-js": "^3.29.1",
"dotenv": "^16.0.3",
"filenamify-url": "^3.0.0",
"fs-extra": "^10.1.0",
"jsdom": "^19.0.0",
"lodash.curry": "^4.1.1",
"moment": "^2.29.4"
},
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.0",
"@babel/eslint-parser": "^7.19.1",
"@babel/node": "^7.20.7",
"@babel/preset-env": "^7.20.2",
"babel-plugin-polyfill-corejs3": "^0.7.1",
"eslint": "^8.36.0",
"prettier": "^2.8.4",
"terminal-kit": "^2.11.7"
},
"ava": {
"files": [
"test/isolated/**/test.js",
"test/full/**/test.js"
]
},
"imports": {
"#src/*": "./src/*",
"#test/*": "./test/*"
},
"bin": {
"earthy": "dist/cli/index.js"
}
}