2015-11-17 13:13:40 -08:00
|
|
|
{
|
|
|
|
"name": "realm",
|
2016-02-21 19:19:55 -08:00
|
|
|
"description": "Realm is a mobile database: an alternative to SQLite and key-value stores",
|
2016-10-04 15:02:51 -07:00
|
|
|
"version": "0.14.3-6",
|
2016-02-18 16:23:54 -08:00
|
|
|
"license": "Apache-2.0",
|
|
|
|
"homepage": "https://realm.io",
|
|
|
|
"keywords": [
|
|
|
|
"database",
|
|
|
|
"db",
|
|
|
|
"react",
|
|
|
|
"react-native",
|
2016-02-18 17:16:14 -08:00
|
|
|
"persistence",
|
|
|
|
"localstorage",
|
|
|
|
"sqlite",
|
|
|
|
"asyncstorage",
|
|
|
|
"rocksdb",
|
|
|
|
"leveldb"
|
2016-02-18 16:23:54 -08:00
|
|
|
],
|
|
|
|
"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"
|
|
|
|
},
|
2015-11-17 13:13:40 -08:00
|
|
|
"main": "lib/index.js",
|
|
|
|
"files": [
|
2016-02-10 02:03:33 +00:00
|
|
|
"android",
|
2015-11-17 13:13:40 -08:00
|
|
|
"lib",
|
|
|
|
"react-native",
|
|
|
|
"scripts",
|
|
|
|
"src",
|
2016-10-04 15:02:51 -07:00
|
|
|
"vendor",
|
2016-11-10 13:51:37 +01:00
|
|
|
"binding.gyp",
|
2016-11-10 13:57:06 +01:00
|
|
|
"dependencies.list"
|
2016-02-08 03:09:58 -08:00
|
|
|
],
|
|
|
|
"scripts": {
|
2016-02-16 22:26:35 -08:00
|
|
|
"get-version": "echo $npm_package_version",
|
|
|
|
"set-version": "scripts/set-version.sh",
|
2016-03-21 11:46:34 -07:00
|
|
|
"get-core-version": "scripts/download-core.sh --version",
|
2016-01-29 00:46:25 -08:00
|
|
|
"jsdoc": "rm -rf docs/output && jsdoc -c docs/conf.json",
|
2016-03-02 15:16:22 -08:00
|
|
|
"lint": "eslint",
|
2016-02-10 02:03:33 +00:00
|
|
|
"test": "scripts/test.sh",
|
2016-10-08 19:36:03 +02:00
|
|
|
"install": "node-pre-gyp install --fallback-to-build"
|
2016-01-29 00:46:25 -08:00
|
|
|
},
|
2016-03-23 10:51:57 -07:00
|
|
|
"dependencies": {
|
2016-05-04 02:14:01 -07:00
|
|
|
"nan": "^2.3.3",
|
2016-10-27 13:49:41 -07:00
|
|
|
"needle": "^1.3.0",
|
2016-10-04 15:02:51 -07:00
|
|
|
"node-pre-gyp": "^0.6.30",
|
2016-11-08 16:47:20 -08:00
|
|
|
"sync-request": "^3.0.1",
|
|
|
|
"url-parse": "^1.1.7"
|
2016-03-23 10:51:57 -07:00
|
|
|
},
|
2016-01-29 00:46:25 -08:00
|
|
|
"devDependencies": {
|
2016-05-20 16:16:52 -07:00
|
|
|
"babel-eslint": "^6.0.4",
|
|
|
|
"eslint": "^2.10.2",
|
|
|
|
"eslint-plugin-react": "^5.1.1",
|
2016-03-16 11:19:09 -07:00
|
|
|
"jsdoc": "^3.4.0",
|
|
|
|
"semver": "^5.1.0"
|
2016-02-18 16:23:54 -08:00
|
|
|
},
|
2016-03-23 10:51:57 -07:00
|
|
|
"rnpm": {
|
|
|
|
"ios": {
|
2016-06-16 17:49:47 -07:00
|
|
|
"project": "react-native/ios/RealmReact.xcodeproj",
|
2016-06-16 17:55:45 -07:00
|
|
|
"sharedLibraries": [
|
|
|
|
"libc++",
|
|
|
|
"libz"
|
|
|
|
]
|
2016-03-23 10:51:57 -07:00
|
|
|
}
|
|
|
|
},
|
2016-02-18 16:23:54 -08:00
|
|
|
"engines": {
|
|
|
|
"node": ">=4"
|
2016-10-04 15:02:51 -07:00
|
|
|
},
|
|
|
|
"binary": {
|
|
|
|
"module_name": "realm",
|
|
|
|
"module_path": "./compiled/{node_abi}_{platform}_{arch}/",
|
|
|
|
"host": "https://static.realm.io",
|
|
|
|
"remote_path": "/node-pre-gyp"
|
2016-02-08 03:09:58 -08:00
|
|
|
}
|
2015-11-17 13:13:40 -08:00
|
|
|
}
|