squid-js/package.json

141 lines
4.3 KiB
JSON
Raw Permalink Normal View History

2018-08-31 10:13:22 +02:00
{
"name": "@oceanprotocol/squid",
2020-05-19 14:44:35 +02:00
"version": "2.2.0",
2018-09-07 14:38:42 +02:00
"description": "JavaScript client library for Ocean Protocol",
2018-11-26 15:55:09 +01:00
"main": "./dist/node/squid.js",
2019-02-15 14:44:48 +01:00
"typings": "./dist/node/squid.d.ts",
2019-07-31 13:02:52 +02:00
"unpkg": "./dist/browser/squid.cjs2.min.js",
2018-08-31 10:13:22 +02:00
"scripts": {
2019-06-19 23:32:09 +02:00
"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:metadata": "./scripts/get-metadata.js > src/metadata.json",
2019-06-25 14:18:02 +02:00
"build:dist": "cross-env NODE_ENV=production webpack",
2019-06-19 23:32:09 +02:00
"build:watch": "tsc -w",
2020-01-30 22:08:18 +01:00
"test": "mocha --opts test/unit/mocha.opts",
"test:watch": "npm test -- -w --watch-extensions js,ts,json",
"test:cover": "nyc --report-dir coverage/unit npm test",
"test:integration": "mocha --opts test/integration/mocha.opts",
"test:integration:pacific": "export NETWORK_NAME=pacific; npm run test:integration",
"test:integration:nile": "export NETWORK_NAME=nile; npm run test:integration",
"test:integration:duero": "export NETWORK_NAME=duero; npm run test:integration",
"test:integration:watch": "npm run test:integration -- -w --watch-extensions js,ts,json",
"test:integration:cover": "nyc --report-dir coverage/integration npm run test:integration",
2019-04-16 14:57:40 +02:00
"clean": "rm -rf ./dist/ ./doc/ ./.nyc_output",
2019-06-19 23:32:09 +02:00
"lint": "eslint --ignore-path .gitignore --ext .ts,.tsx .",
"format": "prettier --parser typescript --ignore-path .gitignore --write '**/*.{js,jsx,ts,tsx}'",
2019-05-15 12:57:52 +02:00
"doc": "typedoc --mode modules --out ./doc/ ./src/",
"doc:json": "./scripts/typedoc.js",
2018-11-05 10:01:58 +01:00
"run": "ts-node",
2019-06-20 01:03:40 +02:00
"release": "release-it --non-interactive",
"changelog": "auto-changelog -p",
"prepublishOnly": "npm run build",
"prebuild": "npm run build:metadata",
2019-06-19 14:12:04 +02:00
"prepare": "npm run build:metadata"
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": [],
2018-09-27 08:55:45 +02:00
"author": "Ocean Protocol <devops@oceanprotocol.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",
2019-04-23 00:24:53 +02:00
"peerDependencies": {
2019-11-14 17:43:20 +01:00
"web3": "^1.2.3"
2019-04-23 00:24:53 +02:00
},
2018-08-31 10:13:22 +02:00
"dependencies": {
"@ethereum-navigator/navigator": "^0.5.0",
2020-01-10 20:30:10 +01:00
"@oceanprotocol/keeper-contracts": "^0.13.2",
2019-11-04 09:30:51 +01:00
"@oceanprotocol/secret-store-client": "^0.0.15",
2019-07-31 13:02:04 +02:00
"bignumber.js": "^9.0.0",
"deprecated-decorator": "^0.1.6",
2019-06-05 17:17:16 +02:00
"node-fetch": "^2.6.0",
"save-file": "^2.3.1",
"uuid": "^8.0.0",
2020-03-16 11:32:59 +01:00
"web3": "^1.2.6",
"whatwg-url": "^8.0.0"
2018-09-25 08:30:54 +02:00
},
"devDependencies": {
2020-03-16 11:32:59 +01:00
"@release-it/bumper": "^1.1.0",
"@truffle/hdwallet-provider": "^1.0.33",
"@types/chai": "^4.2.11",
2019-08-15 10:49:54 +02:00
"@types/chai-spies": "^1.0.1",
"@types/mocha": "^8.0.0",
"@types/node": "^14.0.0",
2020-03-16 11:32:59 +01:00
"@types/node-fetch": "^2.5.5",
"@types/sinon": "^9.0.0",
2020-03-16 11:32:59 +01:00
"@typescript-eslint/eslint-plugin": "^2.23.0",
"@typescript-eslint/parser": "^2.23.0",
"auto-changelog": "^2.0.0",
"chai": "^4.2.0",
2019-02-04 16:26:56 +01:00
"chai-spies": "^1.0.0",
2020-03-16 11:32:59 +01:00
"cross-env": "^7.0.2",
2020-01-29 22:54:24 +01:00
"eslint": "^6.8.0",
2019-08-29 09:02:08 +02:00
"eslint-config-oceanprotocol": "^1.5.0",
2020-01-29 22:54:24 +01:00
"eslint-config-prettier": "^6.10.0",
2019-12-17 09:02:46 +01:00
"eslint-plugin-prettier": "^3.1.2",
2019-03-18 15:02:34 +01:00
"lcov-result-merger": "^3.1.0",
2020-03-16 11:32:59 +01:00
"mocha": "^7.1.0",
2019-11-22 12:26:40 +01:00
"mock-local-storage": "^1.1.11",
"nyc": "^15.0.0",
2019-10-30 12:04:16 +01:00
"ora": "^4.0.2",
"prettier": "^2.0.5",
2020-03-16 11:32:59 +01:00
"sinon": "^9.0.1",
2019-10-30 12:04:16 +01:00
"source-map-support": "^0.5.16",
2020-01-29 22:54:24 +01:00
"ts-node": "^8.6.2",
"typedoc": "^0.17.1",
2020-03-16 11:32:59 +01:00
"typescript": "^3.8.3",
2019-08-15 10:49:54 +02:00
"uglifyjs-webpack-plugin": "^2.2.0",
2020-03-16 11:32:59 +01:00
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11",
2019-08-29 09:02:08 +02:00
"webpack-merge": "^4.2.2"
2019-06-20 01:03:40 +02:00
},
"nyc": {
"include": [
"src/**/*.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
2020-01-30 22:08:18 +01:00
"text",
2019-06-20 01:03:40 +02:00
"lcov",
"html"
],
"sourceMap": true,
"instrument": true
},
"release-it": {
"hooks": {
2019-11-07 12:24:55 +01:00
"after:bump": "npm run changelog && npm run doc:json"
2019-06-20 01:03:40 +02:00
},
"plugins": {
"@release-it/bumper": {
"out": [
"package.json",
2019-11-07 12:24:55 +01:00
"package-lock.json"
2019-06-20 01:03:40 +02:00
]
}
},
"git": {
"tagName": "v${version}"
},
"github": {
"release": true,
"assets": [
"dist/squid-js.json"
]
2019-06-20 01:03:40 +02:00
},
"npm": {
"publish": false
}
2018-08-31 10:13:22 +02:00
}
}