-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
47 lines (47 loc) · 1.84 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
39
40
41
42
43
44
45
46
47
{
"name": "bitmovin-player-roku-analytics-conviva",
"description": "Integration of the Bitmovin Roku Player SDK with the Conviva Analytics.",
"repository": {
"type": "git",
"url": "git+https://github.com/bitmovin/bitmovin-player-roku-analytics-conviva.git"
},
"author": "Bitmovin",
"watch": {
"build:component": {
"patterns": [
"./ConvivaIntegration/components/**/*.*"
],
"extensions": "brs,xml"
},
"build:example": {
"patterns": [
"./ConvivaIntegration/components/**/*.*",
"./demo/source/**/*",
"./demo/component/playerExample/**/*"
],
"extensions": "brs,xml"
}
},
"scripts": {
"lint": "eslint --ext .brs . && kacl lint",
"clean:component": "rm -rf ./dist",
"ensure_dist_folder": "mkdir -p ./dist",
"serve:component": "npm run clean:component && npm run ensure_dist_folder && npm-run-all --parallel watch:component server",
"server": "http-server ./dist -p 8088 -c-1",
"build:component": "npm run ensure_dist_folder && cd ./ConvivaIntegration/ && npx bestzip ../dist/bitmovin-player-conviva-analytics.zip ./ && cd ..",
"watch:component": "npm-watch build:component",
"clean:example": "rm -rf ./demo/components/conviva && rm -rf ./demo/source/conviva/ && rm -rf ./demo/components/bitmovinConviva",
"serve:example": "npm run clean:example && npm-watch build:example",
"build:example": "rsync -a ./ConvivaIntegration/components/ ./demo/components/ && npm run ensure_dist_folder && cd demo && npx bestzip ../dist/bitmovin-player-conviva-analytics-demo ./ && cd ..",
"watch:example": "npm-watch build:example"
},
"devDependencies": {
"bestzip": "^2.1.7",
"eslint": "^5.6.0",
"eslint-plugin-roku": "^1.5.3",
"http-server": "^14.1.1",
"kacl": "^1.1.1",
"npm-run-all": "^4.1.5",
"npm-watch": "^0.11.0"
}
}