laconic-registry-cli/package.json
2023-04-03 18:54:15 +05:30

39 lines
999 B
JSON

{
"name": "@cerc-io/laconic-registry-cli",
"version": "0.1.0",
"main": "index.js",
"repository": "git@github.com:cerc-io/laconic-registry-cli.git",
"author": "",
"license": "UNLICENSED",
"devDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/jest": "^29.5.0",
"@types/js-yaml": "^4.0.5",
"@types/lodash": "^4.14.182",
"@types/node": "^17.0.25",
"@types/semver": "^7.3.13",
"@types/yargs": "^17.0.10",
"jest": "^29.5.0",
"ts-jest": "^29.0.5",
"typescript": "^4.6.3"
},
"dependencies": {
"@cerc-io/laconic-sdk": "0.1.6",
"fs-extra": "^10.1.0",
"js-yaml": "^3.14.1",
"lodash": "^4.17.21",
"lodash-clean": "^2.2.3",
"yargs": "^17.4.1"
},
"scripts": {
"lint": "eslint .",
"clean": "rm -rf ./dist",
"build": "tsc",
"test": "jest --runInBand --verbose",
"test:auctions": "TEST_AUCTIONS_ENABLED=1 jest --runInBand --verbose test/auction.test.ts"
},
"bin": {
"laconic": "bin/laconic"
}
}