-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1 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
{
"name": "mcs",
"version": "1.0.9",
"description": "Media Cache Server",
"author": "Mattias Runge-Broberg <[email protected]>",
"repository": {
"type": "git",
"url": "git://github.com/mattiasrunge/mcs.git"
},
"dependencies": {
"api.io": "^1.0.3",
"checksum": "^0.1.1",
"server-destroy": "^1.0.1",
"uuid": "^8.1.0"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"babel-jest": "^26.0.1",
"eslint": "^7.0.0",
"fs-extra": "^9.0.0",
"get-port": "^5.1.1",
"jest": "26.0.1"
},
"engines": {
"node": ">= 14"
},
"scripts": {
"test": "jest --silent",
"start": "node index.js",
"release": "PACKAGE_VERSION=$(cat package.json | grep version | head -1 | awk -F: '{ print $2 }' | sed 's/[\",]//g' | tr -d '[[:space:]]') && git tag $PACKAGE_VERSION && git push --tags"
},
"main": "index.js",
"license": "MIT",
"bugs": {
"url": "https://github.com/mattiasrunge/mcs/issues"
},
"homepage": "https://github.com/mattiasrunge/mcs#readme"
}