UNPKG

create-datadao

Version:

A CLI tool to generate and deploy DataDAOs on the Vana network

90 lines (89 loc) 2.05 kB
{ "name": "create-datadao", "version": "1.1.4", "description": "A CLI tool to generate and deploy DataDAOs on the Vana network", "main": "bin/create-datadao.js", "bin": { "create-datadao": "bin/create-datadao.js" }, "files": [ "bin", "lib", "README.md" ], "scripts": { "test": "jest", "test:unit": "jest __tests__/lib/", "test:integration": "jest __tests__/integration/ --testTimeout=120000", "test:production": "jest __tests__/production/ --testTimeout=300000", "test:watch": "jest --watch", "test:coverage": "jest --coverage", "test:unit:watch": "jest __tests__/lib/ --watch" }, "keywords": [ "vana", "datadao", "blockchain", "web3", "cli", "generator", "dlp" ], "author": "OpenDataLabs", "license": "MIT", "dependencies": { "chalk": "^4.1.2", "commander": "^9.4.1", "fs-extra": "^11.1.1", "inquirer": "^8.2.5", "open": "^10.1.2", "ora": "^5.4.1", "viem": "^2.23.11" }, "engines": { "node": ">=18.0.0" }, "devDependencies": { "@types/jest": "^29.5.0", "ganache": "^7.9.1", "jest": "^29.7.0" }, "jest": { "testEnvironment": "node", "coverageDirectory": "coverage", "collectCoverageFrom": [ "lib/**/*.js", "bin/**/*.js", "!lib/**/*.test.js", "!**/__tests__/**", "!coverage/**", "!node_modules/**" ], "testMatch": [ "**/__tests__/**/*.test.js", "**/lib/**/*.test.js" ], "coverageThreshold": { "global": { "branches": 80, "functions": 80, "lines": 80, "statements": 80 } }, "setupFilesAfterEnv": [ "<rootDir>/__tests__/setup.js" ], "clearMocks": true, "resetMocks": true, "restoreMocks": true }, "repository": { "type": "git", "url": "https://github.com/vana-com/create-datadao.git" }, "homepage": "https://github.com/vana-com/create-datadao#readme", "bugs": { "url": "https://github.com/vana-com/create-datadao/issues" } }