laconic-registry-cli/package.json

48 lines
1.3 KiB
JSON
Raw Normal View History

2022-04-22 12:22:17 +00:00
{
2022-12-13 15:03:34 +00:00
"name": "@cerc-io/laconic-registry-cli",
"version": "0.1.11",
2022-04-22 12:22:17 +00:00
"main": "index.js",
2022-12-13 15:03:34 +00:00
"repository": "git@github.com:cerc-io/laconic-registry-cli.git",
2022-04-22 12:22:17 +00:00
"author": "",
"license": "UNLICENSED",
"devDependencies": {
2022-04-26 06:57:02 +00:00
"@types/fs-extra": "^9.0.13",
"@types/jest": "^27.4.1",
"@types/js-yaml": "^4.0.5",
"@types/lodash": "^4.14.182",
2022-04-22 12:22:17 +00:00
"@types/node": "^17.0.25",
"@types/yargs": "^17.0.10",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"dotenv": "^16.3.2",
"eslint": "^8.35.0",
"eslint-config-semistandard": "^15.0.1",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"husky": "^9.0.2",
"jest": "29.0.0",
"ts-jest": "^29.0.2",
2022-04-22 12:22:17 +00:00
"typescript": "^4.6.3"
},
"dependencies": {
"@cerc-io/laconic-sdk": "^0.1.15",
"fs-extra": "^10.1.0",
"js-yaml": "^3.14.1",
"lodash": "^4.17.21",
"lodash-clean": "^2.2.3",
2022-04-22 12:22:17 +00:00
"yargs": "^17.4.1"
},
"scripts": {
"test": "jest --runInBand --verbose test/cli.test.ts",
2022-04-22 12:22:17 +00:00
"lint": "eslint .",
"clean": "rm -rf ./dist",
"build": "tsc",
"prepare": "husky"
2022-04-22 12:22:17 +00:00
},
"bin": {
2022-09-28 19:31:20 +00:00
"laconic": "bin/laconic"
2022-04-22 12:22:17 +00:00
}
}