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
45 lines (45 loc) · 2.1 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 2.1 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
41
42
43
44
45
{
"name": "acebase",
"version": "1.7.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/ipc/index.js": "./src/ipc/browser.js",
"./src/promise-fs/index.js": "./src/promise-fs/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/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": "jasmine"
},
"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.5.0",
"unidecode": "^0.1.8"
},
"devDependencies": {
"@types/jasmine": "^3.7.4",
"@types/node": "^14.14.37"
}
}