1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- {
- "name": "@joystream/storage-cli",
- "private": true,
- "version": "0.1.0",
- "description": "Joystream tool for uploading and downloading files to the network",
- "author": "Joystream",
- "homepage": "https://github.com/Joystream/joystream",
- "bugs": {
- "url": "https://github.com/Joystream/joystream/issues"
- },
- "repository": {
- "type": "git",
- "url": "https://github.com/Joystream/joystream.git"
- },
- "license": "GPL-3.0-only",
- "contributors": [
- {
- "name": "Joystream",
- "url": "https://joystream.org"
- }
- ],
- "os": [
- "darwin",
- "linux"
- ],
- "engines": {
- "node": ">=14.0.0"
- },
- "volta": {
- "extends": "../../package.json"
- },
- "scripts": {
- "test": "mocha 'dist/test/**/*.js'",
- "lint": "eslint --ext .js,.ts . && tsc --noEmit --pretty",
- "build": "(rm tsconfig.tsbuildinfo || :) && tsc --build"
- },
- "bin": {
- "storage-cli": "./bin/cli.js"
- },
- "devDependencies": {
- "chai": "^4.2.0",
- "eslint": "^7.6.0",
- "mocha": "^5.2.0",
- "temp": "^0.9.0"
- },
- "dependencies": {
- "@joystream/storage-runtime-api": "^0.1.0",
- "@joystream/storage-utils": "^0.1.0",
- "@joystream/types": "^0.16.1",
- "axios": "^0.21.1",
- "chalk": "^2.4.2",
- "lodash": "^4.17.11",
- "meow": "^5.0.0",
- "ipfs-only-hash": "^1.0.2"
- }
- }
|