{ "name": "@oceanprotocol/squid", "version": "0.1.0-beta.20", "description": "JavaScript client library for Ocean Protocol", "main": "dist/squid.js", "scripts": { "test": "mocha", "test:watch": "mocha -w --watch-extensions js,ts,json", "test:cover": "nyc mocha", "clean": "rm -rf ./dist/ ./doc/ ./coverage ./.nyc_output", "lint": "tslint -c tslint.json 'src/**/*.ts' 'test/**/*.ts'", "start": "npm link @oceanprotocol/keeper-contracts @oceanprotocol/secret-store-client && npm run build:watch", "build": "npm run clean && npm run lint && tsc && npm run doc", "build:watch": "tsc -w", "doc": "typedoc --mode modules --out ./doc/ ./src/", "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" }, "nyc": { "include": [ "src/**/*.ts" ], "extension": [ ".ts" ], "require": [ "ts-node/register" ], "reporter": [ "text-summary", "html" ], "sourceMap": true, "instrument": true }, "repository": { "type": "git", "url": "git+https://github.com/oceanprotocol/squid-js.git" }, "keywords": [], "author": "Ocean Protocol ", "license": "Apache-2.0", "bugs": { "url": "https://github.com/oceanprotocol/squid-js/issues" }, "homepage": "https://github.com/oceanprotocol/squid-js#readme", "engines": { "node": ">=8 <10" }, "dependencies": { "@oceanprotocol/keeper-contracts": "^0.3.11", "@oceanprotocol/secret-store-client": "^0.0.7", "bignumber.js": "^8.0.1", "eth-crypto": "^1.2.5", "eth-ecies": "^1.0.3", "ethereumjs-util": "^6.0.0", "jsonwebtoken": "^8.3.0", "node-fetch": "^2.2.0", "uuid": "^3.3.2", "web3": "1.0.0-beta.36", "web3-utils": "1.0.0-beta.36" }, "devDependencies": { "@types/chai": "^4.1.7", "@types/mocha": "^5.2.5", "@types/node": "^8.10.37", "chai": "^4.2.0", "mocha": "^5.2.0", "nyc": "^13.1.0", "source-map-support": "^0.5.9", "ts-node": "^7.0.1", "tslint": "^5.11.0", "typedoc": "^0.13.0", "typescript": "^3.1.6" } }