forked from samuk190/localbase
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 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
{
"name": "localbase",
"version": "0.7.5",
"description": "A Firebase-Style Database ... Offline!",
"main": "index.js",
"scripts": {
"bundle-dev": "browserify --standalone Localbase index.js -t babelify -t [ envify --NODE_ENV development ] > dist/localbase.dev.js",
"bundle-prod": "browserify -p [ tinyify --no-flat ] --standalone Localbase index.js -t babelify -t [ envify --NODE_ENV production ] > dist/localbase.min.js",
"bundle": "npm run bundle-dev && npm run bundle-prod",
"deploy": "npm run bundle && npm publish"
},
"author": "Danny Connell",
"license": "MIT",
"dependencies": {
"localforage": "^1.7.4",
"ordered-uuid": "^1.1.0"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"babel-plugin-add-module-exports": "^1.0.2",
"babelify": "^10.0.0",
"envify": "^4.1.0",
"tinyify": "^3.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dannyconnell/localbase.git"
},
"keywords": [
"database",
"offline",
"firebase",
"firestore",
"indexeddb",
"javascript"
],
"bugs": {
"url": "https://github.com/dannyconnell/localbase/issues"
},
"homepage": "https://github.com/dannyconnell/localbase#readme"
}