-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 2.18 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
{
"name": "bible-scout-app",
"version": "1.0.0",
"description": "The Bible Scout App was created to help you scout (to examine, seek and observe) what is in the Holy Bible. It leads you to read through the Bible using a few different reading plans, and to support hundreds of global languages. Your reading progress will be tracked only on your local device, so no accounts are needed, allowing users from around the world anonymous access to the tool in a way that protect their privacy.",
"main": "bible-scout-core-app.js",
"dependencies": {
"esbuild": "^0.12.20",
"terser": "^4.3.1"
},
"devDependencies": {},
"scripts": {
"dist": "terser data/discipleship-journal-plan.data.js services/bible-media.service.js components/settings.component.js components/reading-card.component.js components/law-and-prophets.component.js components/nav.component.js components/gospels.component.js components/wisdom.component.js components/epistles.component.js components/home.component.js components/about.component.js bible-scout-core-app.js -o dist/biblescout.min.js --ecma 6 --module",
"dist-compress-mangle": "terser data/discipleship-journal-plan.data.js services/bible-media.service.js components/settings.component.js components/reading-card.component.js components/law-and-prophets.component.js components/nav.component.js components/gospels.component.js components/wisdom.component.js components/epistles.component.js components/home.component.js components/about.component.js bible-scout-core-app.js -o dist/biblescout.min.js -m -c --ecma 6 --module",
"build-dev": "esbuild bible-scout-core-app.js --bundle --outfile=dist/biblescout.js",
"build": "esbuild bible-scout-core-app.js --bundle --minify --sourcemap --outfile=dist/biblescout.min.js",
"watch": "esbuild bible-scout-core-app.js --bundle --minify --sourcemap --outfile=dist/biblescout.min.js --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ericop/bible-scout-app.git"
},
"keywords": [
"bible",
"mithril",
"azure"
],
"author": "ericop",
"license": "MIT",
"bugs": {
"url": "https://github.com/ericop/bible-scout-app/issues"
},
"homepage": "https://biblescout.app"
}