subspace/packages/react/package.json

68 lines
1.8 KiB
JSON
Raw Normal View History

{
"name": "@embarklabs/subspace-react",
2020-03-17 18:14:48 +00:00
"version": "1.0.2",
"description": "Library for Reactive Dapp Development with auto syncing and caching capabilities https://subspace.embarklabs.io",
"homepage": "https://subspace.embarklabs.io",
"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/embarklabs/subspace.git"
},
"bugs": {
"url": "https://github.com/embarklabs/subspace/issues"
},
"license": "MIT",
2020-03-09 15:06:28 +00:00
"types": "types/index.d.ts",
"main": "./lib/index.js",
"module": "./module/index.js",
"scripts": {
"clean": "rimraf lib; rimraf module;",
"build:browser": "cross-env BABEL_ENV=browser babel ./src --out-dir ./lib --source-maps --copy-files",
"build:module": "cross-env BABEL_ENV=module babel ./src --out-dir ./module --source-maps --copy-files",
"build": "npm-run-all clean build:*"
},
"devDependencies": {
"rxjs": "^6.5.2",
"web3": "^1.2.1",
"react": "^16.9.0"
},
"dependencies": {
2020-03-17 18:14:48 +00:00
"@babel/runtime": "^7.8.4",
"core-js": "^3.6.4",
"@babel/runtime-corejs3": "^7.8.4",
2020-03-17 18:00:33 +00:00
"@embarklabs/subspace": "^2.0.0"
},
"peerDependencies": {
"rxjs": "^6.5.2",
"web3": "^1.2.1",
"react": "^16.9.0"
},
"jest": {
"collectCoverage": true,
"testEnvironment": "node",
"testMatch": [
"**/test/*.spec.js"
],
"transform": {
"\\.js$": [
"babel-jest",
{
"rootMode": "upward"
}
]
}
}
}