subspace/packages/core/package.json

72 lines
1.9 KiB
JSON

{
"name": "@embarklabs/subspace",
"version": "2.0.0",
"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",
"main": "./dist/index.js",
"browser": "./lib/index.js",
"module": "./module/index.js",
"types": "types/index.d.ts",
"scripts": {
"clean": "rimraf dist; 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:node": "babel ./src --out-dir ./dist --source-maps --copy-files",
"build": "npm-run-all clean build:*",
"test": "jest"
},
"devDependencies": {
"ganache-core": "^2.10.1",
"rxjs": "^6.5.2",
"web3": "^1.2.1"
},
"dependencies": {
"@babel/runtime-corejs3": "^7.8.4",
"fast-deep-equal": "^3.1.1",
"hex2dec": "^1.1.2",
"keccak": "^3.0.0",
"lokijs": "^1.5.6",
"object-hash": "^2.0.1"
},
"peerDependencies": {
"rxjs": "^6.5.2",
"web3": "^1.2.1"
},
"jest": {
"collectCoverage": true,
"testEnvironment": "node",
"testMatch": [
"**/test/*.spec.js"
],
"transform": {
"\\.js$": [
"babel-jest",
{
"rootMode": "upward"
}
]
}
}
}