-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 1.02 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
{
"name": "jcast",
"version": "0.0.1",
"description": "",
"main": "lib/jcast.js",
"types": "lib",
"scripts": {
"init": "cp .env.example .env",
"init-for-vscode": "npm run init && cp .vscode/launch.json.example .vscode/launch.json && cp .vscode/settings.json.example .vscode/settings.json",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc -p . && uglifyjs lib/jcast.js -o lib/jcast.min.js",
"app": "PORT=$(grep APP_PORT .env | cut -d '=' -f2) node app.js",
"open": "google-chrome $(grep APP_URL .env | cut -d '=' -f2) --new-window"
},
"repository": {
"type": "git",
"url": "git+https://github.com/edgaralexanderfr/jcast.git"
},
"author": "Edgar Alexander Franco <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/edgaralexanderfr/jcast/issues"
},
"homepage": "https://github.com/edgaralexanderfr/jcast#readme",
"devDependencies": {
"express": "^4.17.1",
"typescript": "^4.3.2",
"uglify-js": "^3.13.9"
}
}