subspace/packages/core/package.json

87 lines
2.5 KiB
JSON

{
"name": "@embarklabs/subspace",
"version": "2.0.3",
"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/node/index.js",
"browser": "./dist/browser/index.js",
"module": "./dist/module/index.js",
"types": "types/index.d.ts",
"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": {
"ganache-core": "^2.10.1",
"rxjs": "^6.5.2",
"web3": "^1.2.1"
},
"dependencies": {
"@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",
"keccak": "^3.0.0",
"lokijs": "^1.5.6",
"object-hash": "^2.0.1",
"strip-hex-prefix": "^1.0.0"
},
"peerDependencies": {
"rxjs": "^6.5.2",
"web3": "^1.2.1"
},
"jest": {
"collectCoverage": true,
"testEnvironment": "node",
"testMatch": [
"**/test/*.spec.js"
],
"transform": {
"\\.js$": [
"babel-jest",
{
"rootMode": "upward"
}
]
}
},
"engines": {
"node": ">=10.17.0",
"npm": ">=6.11.3",
"yarn": ">=1.19.1"
}
}