mirror of
https://github.com/bigchaindb/js-bigchaindb-driver.git
synced 2024-11-22 09:46:58 +01:00
108 lines
3.5 KiB
JSON
108 lines
3.5 KiB
JSON
{
|
|
"name": "bigchaindb-driver",
|
|
"version": "4.0.0",
|
|
"description": "Node.js driver for BigchainDB",
|
|
"homepage": "https://www.bigchaindb.com/",
|
|
"bugs": "https://github.com/bigchaindb/js-bigchaindb-driver/issues",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/bigchaindb/js-bigchaindb-driver.git"
|
|
},
|
|
"license": "Apache-2.0",
|
|
"author": "BigchainDB",
|
|
"main": "./dist/node/index.js",
|
|
"browser": "./dist/browser/bigchaindb-driver.cjs2.min.js",
|
|
"scripts": {
|
|
"lint": "eslint ./",
|
|
"build": "npm run clean && npm run build:cjs && npm run build:dist",
|
|
"build:bundle": "webpack",
|
|
"build:cjs": "cross-env BABEL_ENV=cjs babel ./src -d dist/node",
|
|
"build:dist": "cross-env NODE_ENV=production webpack -p",
|
|
"clean": "rimraf dist/bundle dist/node",
|
|
"test": "npm run lint && nyc ava test/ && npm run thanks && npm run report-coverage",
|
|
"testmine": "npm run lint && nyc ava test/integration/test_min*",
|
|
"thanks": "cowsay Hi, thanks for your interest in BigchainDB. We appreciate your contribution!",
|
|
"release": "./node_modules/release-it/bin/release-it.js --src.tagName='v%s' --github.release --npm.publish --non-interactive",
|
|
"release-minor": "./node_modules/release-it/bin/release-it.js minor --src.tagName='v%s' --github.release --npm.publish --non-interactive",
|
|
"release-major": "./node_modules/release-it/bin/release-it.js major --src.tagName='v%s' --github.release --npm.publish --non-interactive",
|
|
"prepublishOnly": "npm run build",
|
|
"precommit": "lint-staged",
|
|
"report-coverage": "nyc report --reporter=lcov > coverage.lcov && codecov"
|
|
},
|
|
"lint-staged": {
|
|
"*.js": [
|
|
"eslint"
|
|
]
|
|
},
|
|
"devDependencies": {
|
|
"ava": "^0.25.0",
|
|
"babel-cli": "^6.26.0",
|
|
"babel-eslint": "^8.2.2",
|
|
"babel-loader": "^7.1.4",
|
|
"babel-plugin-add-module-exports": "^0.2.1",
|
|
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
|
|
"babel-plugin-transform-export-extensions": "^6.22.0",
|
|
"babel-plugin-transform-object-assign": "^6.22.0",
|
|
"babel-plugin-transform-object-rest-spread": "^6.26.0",
|
|
"babel-plugin-transform-runtime": "^6.22.0",
|
|
"babel-preset-env": "^1.6.1",
|
|
"babel-preset-es2015-no-commonjs": "0.0.2",
|
|
"babel-runtime": "^6.26.0",
|
|
"cross-env": "^5.1.4",
|
|
"eslint": "^4.19.1",
|
|
"eslint-config-ascribe": "^3.0.5",
|
|
"eslint-plugin-import": "^2.9.0",
|
|
"husky": "^0.14.3",
|
|
"lint-staged": "^7.0.0",
|
|
"nyc": "^11.6.0",
|
|
"release-it": "^7.2.1",
|
|
"rimraf": "^2.6.2",
|
|
"sinon": "^4.4.9",
|
|
"webpack": "^4.4.1",
|
|
"webpack-cli": "^2.0.13"
|
|
},
|
|
"dependencies": {
|
|
"browser-resolve": "^1.11.2",
|
|
"bs58": "^4.0.1",
|
|
"buffer": "^5.1.0",
|
|
"clone": "^2.1.1",
|
|
"core-js": "^2.5.4",
|
|
"decamelize": "^2.0.0",
|
|
"es6-promise": "^4.2.4",
|
|
"fetch-ponyfill": "^6.0.1",
|
|
"crypto-conditions": "^2.0.1",
|
|
"isomorphic-fetch": "^2.2.1",
|
|
"js-sha3": "^0.7.0",
|
|
"js-utility-belt": "^1.5.0",
|
|
"json-stable-stringify": "^1.0.1",
|
|
"query-string": "^6.0.0",
|
|
"sprintf-js": "^1.1.1",
|
|
"tweetnacl": "^1.0.0"
|
|
},
|
|
"keywords": [
|
|
"bigchaindb",
|
|
"driver",
|
|
"blockchain",
|
|
"decentralized",
|
|
"dapp"
|
|
],
|
|
"ava": {
|
|
"files": [
|
|
"test/*.js"
|
|
],
|
|
"source": [
|
|
"**/*.{js,jsx}",
|
|
"!node_modules/**/*",
|
|
"!dist/**/*"
|
|
],
|
|
"failFast": true,
|
|
"failWithoutAssertions": false,
|
|
"tap": true,
|
|
"powerAssert": false,
|
|
"require": [
|
|
"babel-register"
|
|
],
|
|
"babel": "inherit"
|
|
}
|
|
}
|