mirror of
https://github.com/oceanprotocol-archive/squid-js.git
synced 2024-02-02 15:31:51 +01:00
102 lines
3.8 KiB
JSON
102 lines
3.8 KiB
JSON
{
|
|
"name": "@oceanprotocol/squid",
|
|
"version": "0.5.10",
|
|
"description": "JavaScript client library for Ocean Protocol",
|
|
"main": "./dist/node/squid.js",
|
|
"typings": "./dist/node/squid.d.ts",
|
|
"browser": "./dist/browser/squid.cjs2.min.js",
|
|
"scripts": {
|
|
"test": "mocha",
|
|
"test:watch": "mocha -w --watch-extensions js,ts,json",
|
|
"test:cover": "nyc --report-dir coverage/unit mocha",
|
|
"integration": "mocha --opts integration/mocha.opts",
|
|
"integration:nile": "export NETWORK_NAME=nile; mocha --opts integration/mocha.opts",
|
|
"integration:watch": "mocha -w --watch-extensions js,ts,json --opts integration/mocha.opts",
|
|
"integration:cover": "nyc --report-dir coverage/integration mocha --opts integration/mocha.opts",
|
|
"examples": "./src/examples/fire_lazers.sh",
|
|
"clean": "rm -rf ./dist/ ./doc/ ./.nyc_output",
|
|
"lint": "tslint -c tslint.json 'src/**/*.ts' 'test/**/*.ts' 'integration/**/*.ts'",
|
|
"start": "npm link @oceanprotocol/keeper-contracts @oceanprotocol/secret-store-client && npm run build:watch",
|
|
"build": "npm run clean && npm run build:tsc && npm run build:dist",
|
|
"build:tsc": "tsc --sourceMap",
|
|
"build:dist": "cross-env NODE_ENV=production webpack",
|
|
"build:watch": "tsc -w",
|
|
"doc": "typedoc --mode modules --exclude \"**/examples/**\" --out ./doc/ ./src/",
|
|
"merge-coverages": "npx lcov-result-merger \"coverage/*/lcov.info\" coverage/lcov.info",
|
|
"report-coverage": "npm run report-coverage:unit && npm run report-coverage:integration",
|
|
"report-coverage:unit": "cat coverage/unit/lcov.info | codacy-coverage --token 71ef0d15f6f04ac29b31d704b28f866a",
|
|
"report-coverage:integration": "cat coverage/integration/lcov.info | codacy-coverage --token 71ef0d15f6f04ac29b31d704b28f866a",
|
|
"run": "ts-node",
|
|
"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",
|
|
"lcov",
|
|
"html"
|
|
],
|
|
"sourceMap": true,
|
|
"instrument": true
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/oceanprotocol/squid-js.git"
|
|
},
|
|
"keywords": [],
|
|
"author": "Ocean Protocol <devops@oceanprotocol.com>",
|
|
"license": "Apache-2.0",
|
|
"bugs": {
|
|
"url": "https://github.com/oceanprotocol/squid-js/issues"
|
|
},
|
|
"homepage": "https://github.com/oceanprotocol/squid-js#readme",
|
|
"peerDependencies": {
|
|
"web3": "1.0.0-beta.37"
|
|
},
|
|
"dependencies": {
|
|
"@oceanprotocol/keeper-contracts": "^0.9.1",
|
|
"bignumber.js": "^8.1.1",
|
|
"deprecated-decorator": "^0.1.6",
|
|
"ethereumjs-util": "^6.1.0",
|
|
"node-fetch": "^2.3.0",
|
|
"save-file": "^2.3.1",
|
|
"uuid": "^3.3.2",
|
|
"web3": "1.0.0-beta.37",
|
|
"whatwg-url": "^7.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/chai": "^4.1.7",
|
|
"@types/chai-spies": "^1.0.0",
|
|
"@types/mocha": "^5.2.6",
|
|
"@types/node": "^11.13.2",
|
|
"@types/node-fetch": "^2.3.0",
|
|
"chai": "^4.2.0",
|
|
"chai-spies": "^1.0.0",
|
|
"cross-env": "^5.2.0",
|
|
"lcov-result-merger": "^3.1.0",
|
|
"mocha": "^6.1.2",
|
|
"nyc": "^14.1.0",
|
|
"source-map-support": "^0.5.12",
|
|
"truffle-hdwallet-provider": "^1.0.6",
|
|
"ts-node": "^8.0.3",
|
|
"tslint": "^5.15.0",
|
|
"typedoc": "^0.14.2",
|
|
"typescript": "^3.4.3",
|
|
"uglifyjs-webpack-plugin": "^2.1.2",
|
|
"webpack": "^4.29.6",
|
|
"webpack-cli": "^3.3.0",
|
|
"webpack-merge": "^4.2.1"
|
|
}
|
|
}
|