-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.37 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
{
"name": "word-salad",
"version": "1.1.0",
"description": "Text-to-speech processor that uses sentence mixing instead of synthesis.",
"main": "index.js",
"scripts": {
"start": "electron .",
"build": "npm install && npx electron-builder build",
"test": "jest --coverage --collectCoverageFrom=src/**/*.{js,jsx}",
"test-leaks": "jest --runInBand --detectOpenHandles",
"check-push": "npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FomTarro/word-salad.git"
},
"keywords": [
"js",
"node",
"twitch"
],
"author": "Skeletom",
"license": "MIT",
"bugs": {
"url": "https://github.com/FomTarro/word-salad/issues"
},
"homepage": "https://github.com/FomTarro/word-salad#readme",
"dependencies": {
"express": "^4.21.2",
"markdown-it": "^14.1.0",
"uuid": "^11.0.5",
"ws": "^8.18.0"
},
"devDependencies": {
"electron": "34.0.1",
"electron-builder": "^24.13.3",
"husky": "^3.1.0",
"jest": "^29.7.0"
},
"build": {
"appId": "word-salad.skeletom.net",
"productName": "Word Salad",
"win": {
"target": [
"portable"
]
},
"files": [
"**/*",
"!test/*"
]
},
"husky": {
"hooks": {
"pre-push": "npm run check-push",
"post-merge": "npm install"
}
},
"jest": {
"testEnvironment": "node"
}
}