parsec-node
Version:
https://parseclabs.readthedocs.io/en/latest/
92 lines (91 loc) • 2.27 kB
JSON
{
"name": "parsec-node",
"version": "2.2.2",
"main": "index.js",
"author": "Alex Lunyov <isuntc@gmail.com>",
"license": "MPL-2.0",
"scripts": {
"start": "node index.js",
"test": "./node_modules/.bin/jest",
"test:watch": "./node_modules/.bin/jest --watch",
"precommit": "./node_modules/.bin/lint-staged",
"machine-gun": "node tools/machine-gun.js"
},
"bin": {
"parsec": "./bin.js"
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add",
"eslint"
]
},
"eslintIgnore": [
"docs/"
],
"prettier": {
"printWidth": 80,
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": true,
"trailingComma": "es5",
"bracketSpacing": true
},
"keywords": [
"blockchain",
"ethereum",
"proof-of-stake",
"plasma"
],
"dependencies": {
"abci": "github:parsec-labs/js-abci#a4be8a213afb3a2974b32f8434664009d1cfae1b",
"axios": "^0.18.0",
"bn.js": "^4.11.8",
"body-parser": "^1.18.3",
"colors": "^1.3.1",
"cors": "^2.8.4",
"dashdash": "^1.14.1",
"debug": "^3.1.0",
"deterministic-json": "^1.0.4",
"ethereumjs-util": "^5.2.0",
"express": "^4.16.3",
"express-http-proxy": "^1.0.7",
"fs-extra": "^5.0.0",
"get-port": "^3.1.0",
"jayson": "^2.0.6",
"jpfs": "0.0.3",
"jsondiffpatch": "^0.2.5",
"level": "^4.0.0",
"lodash": "^4.17.10",
"lodash.get": "^4.4.2",
"merk": "^1.3.1",
"parsec-lib": "0.18.1",
"peer-channel": "0.1.1",
"rimraf": "^2.6.2",
"rpc-websockets": "^4.1.2",
"tendermint": "^3.1.9",
"tendermint-node": "github:parsec-labs/tendermint-node#10d7d9939fab29e8f7d5fc53cfe378fbe4b252cc",
"varstruct": "^6.1.1",
"web3": "^1.0.0-beta.34"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.3",
"babel-preset-env": "^1.6.1",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-jest": "^21.17.0",
"husky": "^0.14.3",
"jest": "^23.0.1",
"lint-staged": "^7.0.5",
"prettier": "^1.12.1"
},
"jest": {
"testEnvironment": "node"
}
}