subspace/packages/react/package.json

80 lines
2.4 KiB
JSON

{
"name": "@embarklabs/subspace-react",
"version": "1.0.4",
"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",
"types": "types/index.d.ts",
"main": "./dist/node/index.js",
"browser": "./dist/browser/index.js",
"module": "./dist/module/index.js",
"scripts": {
"analyze": "cross-env WEBPACK_ANALYZE=t npm run build:umd",
"clean": "rimraf dist;",
"build": "npm-run-all clean build:*",
"build:browser": "cross-env BABEL_ENV=browser babel ./src --out-dir ./dist/browser --source-maps --copy-files",
"build:module": "cross-env BABEL_ENV=module babel ./src --out-dir ./dist/module --source-maps --copy-files",
"build:node": "cross-env BABEL_ENV=node babel ./src --out-dir ./dist/dist/node --source-maps --copy-files",
"build:umd": "cross-env BABEL_ENV=module webpack",
"test": "jest",
"watch": "yarn run-p watch:*",
"watch:node": "yarn run build:node -- --verbose --watch",
"watch:browser": "yarn run build:browser -- --verbose --watch",
"watch:module": "yarn run build:module -- --verbose --watch",
"watch:umd": "yarn run build:umd -- --info-verbosity verbose --watch"
},
"devDependencies": {
"react": "^16.9.0",
"rxjs": "^6.5.2",
"web3": "^1.2.1"
},
"dependencies": {
"@babel/runtime": "^7.8.4",
"@babel/runtime-corejs3": "^7.8.4",
"@embarklabs/subspace": "^2.0.0",
"core-js": "^3.6.4",
"prop-types": "^15.7.2",
"strip-hex-prefix": "^1.0.0"
},
"peerDependencies": {
"react": "^16.9.0",
"rxjs": "^6.5.2",
"web3": "^1.2.1"
},
"jest": {
"collectCoverage": true,
"testEnvironment": "node",
"testMatch": [
"**/test/*.spec.js"
],
"transform": {
"\\.js$": [
"babel-jest",
{
"rootMode": "upward"
}
]
}
}
}