2019-05-31 17:58:01 +00:00
|
|
|
{
|
2020-01-22 19:44:51 +00:00
|
|
|
"name": "@embarklabs/subspace",
|
2020-02-11 14:07:21 +00:00
|
|
|
"version": "1.3.0",
|
2019-10-28 17:56:57 +00:00
|
|
|
"description": "Library for Reactive Dapp Development with auto syncing and caching capabilities https://subspace.status.im",
|
2019-10-28 17:58:36 +00:00
|
|
|
"homepage": "https://subspace.status.im",
|
2019-10-28 17:56:57 +00:00
|
|
|
"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"
|
|
|
|
},
|
2019-05-31 19:47:02 +00:00
|
|
|
"license": "MIT",
|
2020-02-03 23:51:19 +00:00
|
|
|
"main": "./dist/index.js",
|
|
|
|
"browser": "./lib/index.js",
|
|
|
|
"module": "./module/index.js",
|
2019-08-09 18:45:38 +00:00
|
|
|
"scripts": {
|
2020-02-12 19:53:33 +00:00
|
|
|
"lint": "eslint 'src/**/*.js'",
|
2020-02-03 23:51:19 +00:00
|
|
|
"clean": "rimraf dist; rimraf lib; rimraf module; rimraf react;",
|
2020-03-04 18:18:22 +00:00
|
|
|
"build:browser": "cross-env BABEL_ENV=browser babel ./src --out-dir ./lib --source-maps --copy-files --ignore ./src/react/**/*",
|
2020-02-03 23:51:19 +00:00
|
|
|
"build:react": "cross-env BABEL_ENV=browser babel ./src/react --out-dir ./react --source-maps --copy-files",
|
2020-03-04 18:18:22 +00:00
|
|
|
"build:module": "cross-env BABEL_ENV=module babel ./src --out-dir ./module --source-maps --copy-files --ignore ./src/react/**/*",
|
|
|
|
"build:node": "babel ./src --out-dir ./dist --source-maps --copy-files --ignore ./src/react/**/*",
|
2020-02-14 22:49:55 +00:00
|
|
|
"build": "npm-run-all clean build:*",
|
|
|
|
"test": "jest"
|
2019-08-09 18:45:38 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-02-03 23:51:19 +00:00
|
|
|
"@babel/cli": "^7.8.4",
|
|
|
|
"@babel/core": "^7.8.4",
|
|
|
|
"@babel/plugin-proposal-class-properties": "^7.8.3",
|
2020-03-04 18:18:22 +00:00
|
|
|
"@babel/plugin-proposal-export-default-from": "^7.8.3",
|
2020-02-14 22:52:01 +00:00
|
|
|
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.3",
|
|
|
|
"@babel/plugin-proposal-optional-chaining": "^7.8.3",
|
2020-02-15 04:51:47 +00:00
|
|
|
"@babel/plugin-proposal-private-methods": "^7.8.3",
|
|
|
|
"@babel/plugin-transform-runtime": "^7.8.3",
|
2020-03-04 18:18:22 +00:00
|
|
|
"@babel/plugin-transform-react-jsx": "^7.8.3",
|
2020-02-03 23:51:19 +00:00
|
|
|
"@babel/preset-env": "^7.8.4",
|
2020-02-12 19:53:33 +00:00
|
|
|
"babel-eslint": "^10.0.3",
|
2020-02-15 21:01:30 +00:00
|
|
|
"babel-jest": "24.9.0",
|
2020-02-15 04:51:47 +00:00
|
|
|
"cross-env": "^7.0.0",
|
2020-02-12 19:53:33 +00:00
|
|
|
"eslint": "^6.8.0",
|
|
|
|
"eslint-plugin-babel": "^5.3.0",
|
|
|
|
"eslint-plugin-import": "^2.20.1",
|
|
|
|
"eslint-plugin-standard": "^4.0.1",
|
2020-02-03 23:51:19 +00:00
|
|
|
"ganache-core": "^2.10.1",
|
2020-02-15 21:01:30 +00:00
|
|
|
"jest": "24.9.0",
|
2019-08-22 15:25:26 +00:00
|
|
|
"npm-run-all": "^4.1.5",
|
2020-02-03 23:51:19 +00:00
|
|
|
"rimraf": "^3.0.1"
|
2019-08-09 18:45:38 +00:00
|
|
|
},
|
2019-05-31 19:47:02 +00:00
|
|
|
"dependencies": {
|
2020-02-03 23:51:19 +00:00
|
|
|
"@babel/runtime-corejs3": "^7.8.4",
|
|
|
|
"fast-deep-equal": "^3.1.1",
|
2019-10-01 19:04:55 +00:00
|
|
|
"hex2dec": "^1.1.2",
|
2020-02-15 04:51:47 +00:00
|
|
|
"keccak": "^3.0.0",
|
2019-05-31 19:47:02 +00:00
|
|
|
"lokijs": "^1.5.6",
|
2020-03-04 18:18:22 +00:00
|
|
|
"object-hash": "^2.0.1"
|
2019-09-04 01:11:12 +00:00
|
|
|
},
|
2020-02-03 23:51:19 +00:00
|
|
|
"peerDependencies": {
|
2019-09-04 01:11:12 +00:00
|
|
|
"graphql": "^14.4.2",
|
|
|
|
"graphql-tag": "^2.10.1",
|
|
|
|
"graphql-tools": "^4.0.5",
|
|
|
|
"react": "^16.9.0",
|
2020-03-04 18:18:22 +00:00
|
|
|
"react-dom": "^16.9.0",
|
|
|
|
"reactive-graphql": "^3.0.2",
|
|
|
|
"rxjs": "^6.5.2",
|
|
|
|
"web3": "^1.2.1"
|
2020-02-14 22:49:55 +00:00
|
|
|
},
|
|
|
|
"jest": {
|
|
|
|
"collectCoverage": true,
|
|
|
|
"testEnvironment": "node",
|
|
|
|
"testPathIgnorePatterns": [
|
|
|
|
"/node_modules/",
|
|
|
|
"/examples/"
|
|
|
|
],
|
|
|
|
"testMatch": [
|
|
|
|
"**/test/*.spec.js"
|
|
|
|
],
|
|
|
|
"transform": {
|
|
|
|
"\\.js$": [
|
|
|
|
"babel-jest",
|
|
|
|
{
|
|
|
|
"rootMode": "upward"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
2019-05-31 19:47:02 +00:00
|
|
|
}
|
2019-05-31 17:58:01 +00:00
|
|
|
}
|