forked from kakaroto/Beyond20
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add package.json and make the build process automated via gulp
Fixes kakaroto#300
- Loading branch information
Showing
3 changed files
with
128 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,4 +8,5 @@ manifest_chrome.json | |
docs/run.sh | ||
pyj/node_modules/ | ||
node_modules/ | ||
.idea/ | ||
.idea/ | ||
build/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
{ | ||
"name": "beyond20", | ||
"version": "1.1.0", | ||
"description": "Beyond20: D&D Beyond & Roll20/Foundry VTT Integration", | ||
"directories": { | ||
"doc": "docs" | ||
}, | ||
"scripts": { | ||
"gulp": "gulp", | ||
"clean": "gulp clean", | ||
"build": "run-s clean build:*", | ||
"build:firefox": "gulp build-firefox", | ||
"build:chrome": "gulp build-chrome", | ||
"package": "run-s build package:*", | ||
"package:chrome": "web-ext build --source-dir=./build/chrome/ --artifacts-dir=./build/chrome/web-ext-artifacts/", | ||
"package:firefox": "web-ext build --source-dir=./build/firefox/ --artifacts-dir=./build/firefox/web-ext-artifacts/", | ||
"start:chrome": "web-ext run -t chromium --source-dir ./build/chrome/", | ||
"start:firefox": "web-ext run --source-dir ./build/firefox/" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/kakaroto/Beyond20.git" | ||
}, | ||
"keywords": [], | ||
"author": "", | ||
"license": "GNU", | ||
"bugs": { | ||
"url": "https://github.com/kakaroto/Beyond20/issues" | ||
}, | ||
"homepage": "https://beyond20.here-for-more.info", | ||
"devDependencies": { | ||
"gulp": "^4.0.2", | ||
"gulp-concat": "^2.6.1", | ||
"npm-run-all": "^4.1.5", | ||
"web-ext": "^4.2.0", | ||
"gulp-clean": "^0.4.0", | ||
"gulp-rename": "^2.0.0" | ||
} | ||
} |