{ "name": "@embarklabs/subspace", "version": "1.3.0", "description": "Library for Reactive Dapp Development with auto syncing and caching capabilities https://subspace.status.im", "homepage": "https://subspace.status.im", "author": "Status Research & Development GMBH", "authors": [ { "name": "Iuri Matias", "email": "iuri.matias@gmail.com", "homepage": "https://github.com/iurimatias" }, { "name": "Richard Ramos", "email": "info@richardramos.me", "homepage": "https://github.com/richard-ramos" } ], "repository": { "type": "git", "url": "git+https://github.com/embark-framework/subspace.git" }, "bugs": { "url": "https://github.com/embark-framework/subspace/issues" }, "license": "MIT", "main": "./dist/index.js", "browser": "./lib/index.js", "module": "./module/index.js", "scripts": { "lint": "eslint 'src/**/*.js'", "clean": "rimraf dist; rimraf lib; rimraf module; rimraf react;", "build:browser": "cross-env BABEL_ENV=browser babel ./src --out-dir ./lib --source-maps --copy-files --ignore src/react/*", "build:react": "cross-env BABEL_ENV=browser babel ./src/react --out-dir ./react --source-maps --copy-files", "build:module": "cross-env BABEL_ENV=module babel ./src --out-dir ./module --source-maps --copy-files", "build:node": "babel ./src --out-dir ./dist --source-maps --copy-files", "build": "npm-run-all clean build:*", "test": "jest" }, "devDependencies": { "@babel/cli": "^7.8.4", "@babel/core": "^7.8.4", "@babel/plugin-proposal-class-properties": "^7.8.3", "@babel/plugin-transform-runtime": "^7.8.3", "@babel/plugin-proposal-private-methods": "^7.8.3", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.3", "@babel/plugin-proposal-optional-chaining": "^7.8.3", "@babel/preset-env": "^7.8.4", "babel-eslint": "^10.0.3", "eslint": "^6.8.0", "eslint-plugin-babel": "^5.3.0", "eslint-plugin-import": "^2.20.1", "eslint-plugin-standard": "^4.0.1", "cross-env": "^7.0.0", "ganache-core": "^2.10.1", "npm-run-all": "^4.1.5", "rimraf": "^3.0.1" }, "dependencies": { "babel-jest": "24.9.0", "jest": "24.9.0", "@babel/runtime": "^7.8.4", "@babel/runtime-corejs3": "^7.8.4", "core-js": "^3.6.4", "fast-deep-equal": "^3.1.1", "hex2dec": "^1.1.2", "lokijs": "^1.5.6", "object-hash": "^2.0.1", "rxjs": "^6.5.2", "web3-eth": "^1.2.6" }, "peerDependencies": { "graphql": "^14.4.2", "graphql-tag": "^2.10.1", "graphql-tools": "^4.0.5", "react": "^16.9.0", "reactive-graphql": "^3.0.2" }, "jest": { "collectCoverage": true, "testEnvironment": "node", "testPathIgnorePatterns": [ "/node_modules/", "/examples/" ], "testMatch": [ "**/test/*.spec.js" ], "transform": { "\\.js$": [ "babel-jest", { "rootMode": "upward" } ] } } }