-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.49 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
{
"name": "brighterscript-game-engine",
"version": "0.4.1",
"description": "Game Engine for Roku written in Brighterscript. Forked from Romans-I-XVI/Roku-gameEngine",
"author": "Mark Pearce",
"keywords": [
"ropm",
"roku",
"brighterscript",
"brightscript",
"game engine"
],
"scripts": {
"build": "npm run clean && bsc --create-package=false",
"preversion": "npm run validate",
"validate": "bsc --create-package=false --copy-to-staging=false",
"clean": "rimraf brighterscript*.tgz && rimraf dist && rimraf out",
"clean-all": "npm run clean && ./scripts/examples_clean.sh",
"docs": "rimraf docs && ./node_modules/.bin/jsdoc -c jsdoc.json -d docs -t ./node_modules/braintree-jsdoc-template",
"prepare-examples": "npm run build && ./scripts/examples_npm_install.sh",
"build-examples": "npm run build && ./scripts/examples_build.sh",
"lint": "bslint"
},
"files": [
"dist/**/*"
],
"license": "MIT",
"devDependencies": {
"@rokucommunity/bslint": "^0.7.3",
"braintree-jsdoc-template": "^3.3.0",
"brighterscript": "^0.55.2",
"brighterscript-jsdocs-plugin": "^0.6.0",
"rimraf": "^3.0.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/markwpearce/brighterscript-game-engine.git"
},
"homepage": "https://github.com/markwpearce/brighterscript-game-engine#readme",
"bugs": {
"url": "https://github.com/markwpearce/brighterscript-game-engine/issues"
},
"ropm": {
"packageRootDir": "src"
}
}