forked from appy-one/acebase
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.99 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.99 KB
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
{
"name": "acebase",
"version": "1.5.0",
"description": "AceBase realtime database. Open source firebase alternative for nodejs and browser, with additional features: indexes, geo, fulltext, queries, custom storage, offline usage, synchronization, live data proxies and more",
"main": "./src/index.js",
"browser": {
"./src/index.js": "./src/browser.js",
"./src/storage-acebase.js": "./src/not-supported.js",
"./src/storage-mssql.js": "./src/not-supported.js",
"./src/storage-sqlite.js": "./src/not-supported.js",
"./src/promise-fs.js": "./src/not-supported.js",
"./src/data-index.js": "./src/not-supported.js",
"./src/btree.js": "./src/not-supported.js"
},
"types": "./index.d.ts",
"private": false,
"repository": "github:appy-one/acebase",
"scripts": {
"browserify": "browserify src/browser.js -o dist/browser.js --standalone acebase -u src/btree.js -i ./src/data-index.js -u src/geohash.js -u src/node-cache.js -i ./src/promise-fs.js -u src/promise-timeout.js -i ./src/storage-acebase.js -i ./src/storage-mssql.js -i ./src/storage-sqlite.js --ignore buffer --ignore rxjs && terser dist/browser.js -o dist/browser.min.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"binary", "fast", "low-memory", "lightweight", "schemaless", "realtime",
"database", "db", "json", "json database", "nosql", "nosql database",
"object store", "document store", "datastore",
"realtime updates", "synchronization", "sync", "offline",
"query", "queries", "fulltext queries", "fulltext search", "geo queries", "realtime queries",
"indexes", "fulltext indexes", "geo indexes", "array indexes",
"transactional", "transactions",
"firebase", "firebase alternative",
"browser", "browser database", "localStorage json", "IndexedDB json",
"live data", "data proxy"
],
"author": "Ewout Stortenbeker <me@appy.one> (http://appy.one)",
"license": "MIT",
"dependencies": {
"acebase-core": "^1.4.1",
"unidecode": "^0.1.8"
}
}