1
0
mirror of https://github.com/oceanprotocol-archive/squid-js.git synced 2024-02-02 15:31:51 +01:00
squid-js/package.json

40 lines
1.3 KiB
JSON
Raw Normal View History

2018-08-31 10:13:22 +02:00
{
"name": "@oceanprotocol/squid",
2018-09-24 13:23:08 +02:00
"version": "0.0.11",
2018-09-07 14:38:42 +02:00
"description": "JavaScript client library for Ocean Protocol",
2018-08-31 15:17:12 +02:00
"main": "dist/squid.js",
2018-08-31 10:13:22 +02:00
"scripts": {
2018-09-06 17:23:20 +02:00
"test": "eslint ./src",
2018-09-25 08:30:54 +02:00
"start": "tsc -w",
"build": "tsc",
2018-09-06 17:44:17 +02:00
"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"
2018-08-31 10:13:22 +02:00
},
"repository": {
"type": "git",
2018-09-06 10:01:57 +02:00
"url": "git+https://github.com/oceanprotocol/squid-js.git"
2018-08-31 10:13:22 +02:00
},
"keywords": [],
"author": "Ocean Protocol <devops@oceanproocol.com>",
"license": "Apache-2.0",
2018-08-31 10:13:22 +02:00
"bugs": {
2018-09-06 10:01:57 +02:00
"url": "https://github.com/oceanprotocol/squid-js/issues"
2018-08-31 10:13:22 +02:00
},
2018-09-06 10:01:57 +02:00
"homepage": "https://github.com/oceanprotocol/squid-js#readme",
2018-08-31 10:13:22 +02:00
"dependencies": {
"@oceanprotocol/keeper-contracts": "^0.2.0",
2018-09-25 08:30:54 +02:00
"bn.js": "^4.11.8",
2018-08-31 10:13:22 +02:00
"truffle-contract": "^3.0.6",
2018-09-25 08:30:54 +02:00
"web3": "0.20.6",
"whatwg-fetch": "^3.0.0"
},
"engines": {
"node": ">=8 <10"
2018-09-25 08:30:54 +02:00
},
"devDependencies": {
"@types/web3": "^1.0.6"
2018-08-31 10:13:22 +02:00
}
}