forked from realm/realm-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.11 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
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "realm",
"description": "Realm is a mobile database: an alternative to SQLite and key-value stores",
"version": "0.10.0",
"license": "Apache-2.0",
"homepage": "https://realm.io",
"keywords": [
"database",
"db",
"react",
"react-native",
"persistence",
"localstorage",
"sqlite",
"asyncstorage",
"rocksdb",
"leveldb"
],
"author": {
"name": "Realm",
"email": "help@realm.io",
"url": "https://realm.io"
},
"repository": {
"type": "git",
"url": "https://github.com/realm/realm-js.git"
},
"bugs": {
"url": "https://github.com/realm/realm-js/issues"
},
"main": "lib/index.js",
"files": [
"android",
"lib",
"react-native",
"scripts",
"src",
"vendor",
"RealmJS.xcodeproj"
],
"scripts": {
"get-version": "echo $npm_package_version",
"set-version": "scripts/set-version.sh",
"jsdoc": "rm -rf docs/output && jsdoc -c docs/conf.json",
"test": "scripts/test.sh",
"prepublish": "scripts/prepublish.sh"
},
"devDependencies": {
"jsdoc": "^3.4.0"
},
"engines": {
"node": ">=4"
}
}