-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
79 lines (79 loc) · 2.21 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
{
"name": "maestro-roku-sample",
"version": "0.2.4",
"description": "A development platform for building roku channels in brighterscript. Sample app",
"main": "index.js",
"dependencies": {
"log": "npm:roku-log@^0.9.3",
"maestro": "npm:maestro-roku@^0.57.0"
},
"devDependencies": {
"@rokucommunity/bslint": "0.8.1",
"@types/fs-extra": "^9.0.13",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"brighterscript": "0.61.3",
"bslib": "1.0.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-github": "^4.6.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-no-only-tests": "^2.6.0",
"find-in-files": "^0.5.0",
"fs-extra": "^10.1.0",
"maestro-roku-bsc-plugin": "^0.27.0",
"path": "^0.12.7",
"roku-deploy": "3.7.0",
"roku-log-bsc-plugin": "0.7.0",
"rooibos-roku": "5.4.2",
"ropm": "0.10.5",
"scenegraph-schema": "^0.2.1",
"telnet-client": "1.4.11",
"ts-node": "^10.4.0",
"typescript": "4.2.4",
"util": "^0.12.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/georgejecook/maestro-roku-sample.git"
},
"keywords": [
"ropm",
"brightscript",
"mvvm",
"framework",
"fun"
],
"author": "George Cook",
"license": "MIT",
"bugs": {
"url": "https://github.com/georgejecook/maestro-roku-sample/issues"
},
"homepage": "https://github.com/georgejecook/maestro-roku-sample#readme",
"ts-node": {
"transpileOnly": true,
"compileOptions": {
"incremental": true,
"allowJs": false
}
},
"ropm": {
"rootDir": "src",
"packageRootDir": "dist",
"noprefix": [
"maestro"
]
},
"scripts": {
"postinstall": "npm run build-scripts && npm run ropm",
"update-schema": "npm run build && cd build && npx scenegraph-schema -o ../.vscode/project.xsd",
"ropm": "ropm copy",
"build": "node scripts/run prod",
"build-scripts": "rm -rf build-scripts && npx tsc",
"build-dev": "node scripts/run.js dev",
"build-test": "node scripts/run.js test",
"build-tdd": "node scripts/run.js tdd",
"lint": "npx bslint",
"tslint": "eslint \"scripts/**/*.ts\""
}
}