-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 811 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 811 Bytes
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
{
"name": "stream-event-hub-core",
"version": "1.0.0",
"description": "Backend engine for aggregating Twitch, YouTube, and LivePix stream events.",
"main": "index.js",
"scripts": {
"lint": "npm --prefix server run lint",
"test": "npm --prefix server test",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+https://github.com/viktorkav/stream-event-hub-core.git"
},
"lint-staged": {
"server/**/*.js": "cd server && npm run lint"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"bugs": {
"url": "https://github.com/viktorkav/stream-event-hub-core/issues"
},
"homepage": "https://github.com/viktorkav/stream-event-hub-core#readme",
"devDependencies": {
"husky": "^9.1.7",
"lint-staged": "^16.4.0"
}
}