-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 961 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
{
"name": "github-pipeline-visualizer",
"version": "1.0.0",
"description": "A github pipeline visualizer",
"main": "dist/index.js",
"scripts": {
"precompile": "tsc --build --clean",
"compile": "tsc",
"test": "echo \"Error: no test specified\" && exit 1",
"predev": "npm run compile",
"dev": "node dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DaanQ42/github-pipeline-visualizer.git"
},
"keywords": [
"Github",
"Pipeline",
"Visualizer"
],
"author": "DaanV2",
"license": "MIT",
"bugs": {
"url": "https://github.com/DaanQ42/github-pipeline-visualizer/issues"
},
"homepage": "https://github.com/DaanQ42/github-pipeline-visualizer#readme",
"devDependencies": {
"@types/express": "^4.17.14",
"@types/node": "^18.11.3",
"@types/ws": "^8.5.3",
"typescript": "^4.8.4"
},
"dependencies": {
"express": "^4.18.2",
"ws": "^8.9.0"
}
}