-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
91 lines (77 loc) · 1.97 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "simpletts",
"version": "2.6.0",
"description": "A basic TTS manager",
"type": "commonjs",
"typings": "./lib/cjs/main.d.cts",
"main": "./lib/cjs/main.cjs",
"exports": {
".": {
"require": {
"types": "./lib/cjs/main.d.cts",
"default": "./lib/cjs/main.cjs"
}
}
},
"scripts": {
"build": "node ./removeOldBuild.js && npx tsc --project \"./tsconfig.json\"",
"lint": "npx eslint ./test/**/*.js",
"check-requires": "npx used-deps-analyzer \"./package.json\" \"./src\" --no-dev --overkill \"fs-extra\" \"node-promfs\"",
"check-updates": "npx check-version-modules",
"unit-tests": "npm run build && npx nyc --reporter=html --reporter=text mocha",
"tests": "npm run-script lint && npm run check-requires && npm run-script check-updates && npm run-script unit-tests",
"ci": "npm run-script tests && npx nyc report --reporter=text-lcov | coveralls"
},
"bin": {
"simpletts": "./bin/cmd.js"
},
"files": [
"/batchs",
"/bin",
"/lib"
],
"engines": {
"node": ">=16.0.0"
},
"dependencies": {},
"devDependencies": {
"@types/node": "20.5.1",
"check-version-modules": "1.4.1",
"coveralls": "3.1.1",
"eslint": "8.47.0",
"husky": "8.0.3",
"mocha": "10.2.0",
"nyc": "15.1.0",
"typescript": "5.1.6",
"used-deps-analyzer": "0.1.6"
},
"optionalDependencies": {},
"husky": {
"hooks": {
"pre-commit": "npm run-script lint",
"pre-push": "npm run-script tests"
}
},
"keywords": [
"tts",
"speech",
"text",
"text to speech",
"text-to-speech"
],
"author": "Sébastien VIDAL",
"contributors": [
"taffeldt",
"JDBar",
"KristjanESPERANTO"
],
"license": "ISC",
"homepage": "https://github.com/Psychopoulet/simpletts#readme",
"repository": {
"type": "git",
"url": "git://github.com/Psychopoulet/simpletts.git"
},
"bugs": {
"url": "https://github.com/Psychopoulet/simpletts/issues"
}
}