-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.11 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
{
"name": "template-controller",
"version": "0.1.0",
"description": "CasparCG HTML template controller.",
"homepage": "https://git.dolejska.me/casparcg/template-controller",
"scripts": {
"test": "echo 'Error: no test specified' && exit 1",
"build": "tsc",
"build-all": "tsc && npm run minify",
"build-all-min": "tsc && npm run minify-max",
"minify": "uglifyjs --ecma 5 --source-map filename=build/build.js.map -c -o build/build.min.js -- build/build.js",
"minify-max": "uglifyjs --ecma 5 --source-map filename=build/build.js.map -c --mangle reserved=[Template] --mangle-props reserved=[Controller,GetInstance,Play,Update,Next,Stop] -o build/build.min.js -- build/build.js"
},
"repository": {
"type": "git",
"url": "[email protected]:casparcg/template-controller.git"
},
"keywords": [
"casparcg",
"html",
"template",
"animation"
],
"author": "Daniel Dolejška",
"bugs": {
"email": "[email protected]",
"url": "https://git.dolejska.me/casparcg/template-controller/issues"
},
"license": "proprietary",
"devDependencies": {
"typescript": "^3.6.4",
"uglify-es": "^3.3.9"
}
}