mirror of
https://github.com/status-im/realm-js.git
synced 2025-01-27 14:54:55 +00:00
05c432deb1
The JS engine details are mostly abstracted away. This breaks JSC support until the rest of the pieces are in place. The Node version builds and runs, but crashes when creating a Realm object.
75 lines
1.6 KiB
JSON
75 lines
1.6 KiB
JSON
{
|
|
"name": "realm",
|
|
"description": "Realm is a mobile database: an alternative to SQLite and key-value stores",
|
|
"version": "0.11.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"
|
|
],
|
|
"scripts": {
|
|
"get-version": "echo $npm_package_version",
|
|
"set-version": "scripts/set-version.sh",
|
|
"get-core-version": "scripts/download-core.sh --version",
|
|
"jsdoc": "rm -rf docs/output && jsdoc -c docs/conf.json",
|
|
"lint": "eslint",
|
|
"test": "scripts/test.sh",
|
|
"prepublish": "scripts/prepublish.sh"
|
|
},
|
|
"dependencies": {
|
|
"bindings": "^1.2.1",
|
|
"nan": "^2.2.1",
|
|
"node-gyp": "^3.3.1",
|
|
"rnpm": "1.5.2",
|
|
"xcode": "0.8.4"
|
|
},
|
|
"devDependencies": {
|
|
"babel-eslint": "^6.0.0-beta.6",
|
|
"eslint": "^2.4.0",
|
|
"eslint-plugin-react": "^4.2.3",
|
|
"jsdoc": "^3.4.0",
|
|
"semver": "^5.1.0"
|
|
},
|
|
"rnpm": {
|
|
"commands": {
|
|
"postlink": "node_modules/realm/scripts/rnpm-postlink.js"
|
|
},
|
|
"ios": {
|
|
"project": "react-native/ios/RealmReact.xcodeproj"
|
|
}
|
|
},
|
|
"engines": {
|
|
"node": ">=4"
|
|
}
|
|
}
|