-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.68 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.68 KB
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
{
"name": "rotor-framework",
"version": "0.8.2",
"description": "Roku toolkit library providing a ViewBuilder, full UI lifecycle with focus handling and many core features, plus MVI-based state management.",
"author": "Balázs Molnár",
"license": "Apache-2.0",
"scripts": {
"build": "bsc --project bsconfig.json --createPackage=false",
"build-tests": "bsc --project bsconfig-tests.json --createPackage=false",
"coverage": "node scripts/collect-coverage.js",
"lint": "npx bslint --project bsconfig.json --lintConfig bslint.json",
"update-version": "node scripts/update-version.js",
"release:patch": "node scripts/release.js patch",
"release:minor": "node scripts/release.js minor",
"release:major": "node scripts/release.js major"
},
"files": [
"src/source/base/**/*",
"src/source/engine/**/*",
"src/source/libs/**/*",
"src/source/plugins/**/*",
"src/source/utils/**/*",
"src/source/RotorFramework.bs",
"src/source/RotorFrameworkTask.bs",
"README.md",
"LICENSE",
"!src/source/**/*.spec.bs"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"ropm": {
"packageRootDir": "src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mobalazs/rotor-framework.git"
},
"keywords": [
"roku",
"brightscript",
"brighterscript",
"framework",
"mvi",
"state-management",
"ui-framework",
"view-builder",
"ropm"
],
"bugs": {
"url": "https://github.com/mobalazs/rotor-framework/issues"
},
"homepage": "https://github.com/mobalazs/rotor-framework#readme",
"devDependencies": {
"@rokucommunity/bslint": "1.0.0-alpha.50",
"brighterscript": "1.0.0-alpha.50",
"roku-deploy": "^3.16.1",
"rooibos-roku": "6.0.0-alpha.50"
}
}