-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
47 lines (47 loc) · 1.24 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": "@rokucommunity/promises",
"version": "0.5.0",
"author": "RokuCommunity",
"license": "MIT",
"description": "A Promise-like implementation for BrightScript/Roku",
"scripts": {
"preversion": "npm run build && npm run prepare-releases",
"build": "bsc",
"build-tests": "bsc --project bsconfig.tests.json",
"test": "npm run build-tests && npx ts-node ./scripts/runUnitTestsOnDevice.ts",
"prepare-releases": "npx ts-node ./scripts/prepare-releases.ts"
},
"devDependencies": {
"@types/fs-extra": "^11.0.1",
"@types/node": "^20.6.0",
"brighterscript": "^0.65.5",
"dotenv": "^16.3.1",
"fs-extra": "^11.1.1",
"roku-deploy": "^3.10.3",
"rooibos-roku": "^5.8.0",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"files": [
"dist/components/Promise.xml",
"dist/source/promises.brs",
"dist/source/promises.d.bs"
],
"keywords": [
"ropm",
"roku",
"brightscript",
"promise"
],
"ropm": {
"packageRootDir": "dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rokucommunity/promise.git"
},
"bugs": {
"url": "https://github.com/rokucommunity/promise/issues"
},
"homepage": "https://github.com/rokucommunity/promise#readme"
}