forked from VanjaPin/maestro-roku
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.3 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "maestro-roku",
"version": "0.63.0",
"description": "A development platform for building roku channels in brighterscript",
"directories": {
"doc": "docs"
},
"files": [
"dist/**/!(manifest)*",
"!dist/components/maestro",
"!roku_modules",
"!**/_maestro/*.*",
"!**/_maestro/**/*.*",
"dist/**/!(*.spec.)*"
],
"dependencies": {
"@rokucommunity/bslib": "^0.1.1",
"log": "npm:roku-log@^0.10.1"
},
"devDependencies": {
"@rokucommunity/bslint": "^0.8.1",
"auto-changelog": "^2.2.1",
"brighterscript": "^0.64.0",
"fs-extra": "^7.0.1",
"maestro-roku-bsc-plugin": "^0.29.0",
"rimraf": "^3.0.2",
"roku-log-bsc-plugin": "^0.8.0",
"rooibos-roku": "^5.4.2",
"ropm": "^0.9.1",
"ts-node": "^10.4.0",
"typescript": "^4.1.3",
"undent": "^0.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/georgejecook/maestro-roku.git"
},
"keywords": [
"ropm",
"brightscript",
"mvvm",
"framework",
"fun"
],
"author": "George Cook",
"license": "MIT",
"bugs": {
"url": "https://github.com/georgejecook/maestro-roku/issues"
},
"homepage": "https://github.com/georgejecook/maestro-roku#readme",
"ts-node": {
"transpileOnly": true,
"compileOptions": {
"incremental": true,
"allowJs": false
}
},
"ropm": {
"rootDir": "src",
"packageRootDir": "dist",
"prefixMatching": "expanded"
},
"auto-changelog": {
"template": "keepachangelog",
"commitLimit": false,
"tag-pattern": ".+"
},
"scripts": {
"update-schema": "npm run build && cd build && npx scenegraph-schema -o ../.vscode/project.xsd",
"_postinstall": "npx ropm copy",
"build": "node scripts/run.js dist && npx ts-node scripts/cleanup-build.js",
"build-test": "node scripts/run.js test",
"build-tdd": "node scripts/run.js tdd",
"build-sample-app": "node scripts/run.js sample-app",
"changelog": "npx auto-changelog",
"publish-docs": "npm run build-docs && git checkout docspub && rm -rf docs && cp -r .tmp/docs . && git add --all && git commit -m 'docs update' && git push -f && git checkout master",
"watch-docs": "npm run build-docs -- --watch",
"lint": "npx bsc",
"ropm": "npx ropm copy"
},
"optionalDependencies": {
"fsevents": "^2.3.2"
}
}