2021-04-23 16:16:35 +02:00
|
|
|
{
|
2022-04-29 15:51:09 +02:00
|
|
|
"name": "@ethersphere/bee-factory",
|
2022-05-24 12:54:11 +02:00
|
|
|
"version": "0.4.1",
|
2022-04-29 15:51:09 +02:00
|
|
|
"description": "Orchestration CLI for spinning up local development Bee cluster with Docker",
|
|
|
|
|
"keywords": [
|
|
|
|
|
"bee",
|
|
|
|
|
"swarm",
|
|
|
|
|
"decentralised",
|
|
|
|
|
"storage",
|
|
|
|
|
"ethereum",
|
|
|
|
|
"typescript",
|
|
|
|
|
"p2p",
|
|
|
|
|
"docker"
|
|
|
|
|
],
|
|
|
|
|
"homepage": "https://github.com/ethersphere/bee-factory",
|
|
|
|
|
"bugs": {
|
|
|
|
|
"url": "https://github.com/ethersphere/bee-factory/issues/"
|
|
|
|
|
},
|
|
|
|
|
"license": "BSD-3-Clause",
|
|
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
|
|
|
|
"url": "https://github.com/ethersphere/bee-factory.git"
|
|
|
|
|
},
|
|
|
|
|
"bin": {
|
2022-05-05 14:23:55 +02:00
|
|
|
"bee-factory": "./dist/src/index.js"
|
2022-04-29 15:51:09 +02:00
|
|
|
},
|
2022-05-05 14:23:55 +02:00
|
|
|
"main": "dist/src/index.js",
|
2022-04-29 15:51:09 +02:00
|
|
|
"files": [
|
|
|
|
|
"dist"
|
|
|
|
|
],
|
2021-04-23 16:16:35 +02:00
|
|
|
"scripts": {
|
2022-05-05 13:49:53 +02:00
|
|
|
"prepublishOnly": "npm run build",
|
2022-04-29 15:51:09 +02:00
|
|
|
"build": "rimraf dist && tsc",
|
|
|
|
|
"start": "ts-node src/index.ts",
|
|
|
|
|
"test": "jest --verbose --config=jest.config.ts",
|
|
|
|
|
"types:check": "tsc --project tsconfig.test.json",
|
|
|
|
|
"lint": "eslint --fix \"src/**/*.ts\" \"test/**/*.ts\" && prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
|
|
|
|
|
"lint:check": "eslint \"src/**/*.ts\" \"test/**/*.ts\" && prettier --check \"src/**/*.ts\" \"test/**/*.ts\"",
|
|
|
|
|
"depcheck": "depcheck ."
|
2021-04-23 16:16:35 +02:00
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2022-05-30 14:17:04 +02:00
|
|
|
"@ethersphere/bee-js": "^4.1.1",
|
2022-04-29 15:51:09 +02:00
|
|
|
"chalk": "^2.4.2",
|
|
|
|
|
"dockerode": "^3.3.1",
|
2022-05-31 10:23:49 +02:00
|
|
|
"furious-commander": "^1.7.1",
|
2022-04-29 15:51:09 +02:00
|
|
|
"node-fetch": "3.0.0-beta.9",
|
|
|
|
|
"ora": "^5.3.0"
|
2021-04-23 16:16:35 +02:00
|
|
|
},
|
2022-04-29 15:51:09 +02:00
|
|
|
"devDependencies": {
|
|
|
|
|
"@codejedi365/jest-serial-runner": "^2.0.0",
|
2022-06-06 17:21:48 +02:00
|
|
|
"@commitlint/cli": "^17.0.2",
|
2022-06-06 16:39:15 +02:00
|
|
|
"@commitlint/config-conventional": "^17.0.2",
|
2022-04-29 15:51:09 +02:00
|
|
|
"@fluffy-spoon/substitute": "^1.208.0",
|
2022-05-30 14:25:57 +02:00
|
|
|
"@jest/types": "^28.1.0",
|
2022-06-06 16:38:52 +02:00
|
|
|
"@types/dockerode": "^3.3.9",
|
2022-04-29 15:51:09 +02:00
|
|
|
"@types/jest": "^27.4.1",
|
2022-05-31 10:23:00 +02:00
|
|
|
"@types/node": "^17.0.36",
|
2022-05-31 10:50:00 +02:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.27.0",
|
2022-04-29 15:51:09 +02:00
|
|
|
"@typescript-eslint/parser": "^5.10.0",
|
|
|
|
|
"depcheck": "^1.4.3",
|
2022-05-30 14:26:13 +02:00
|
|
|
"eslint": "^8.16.0",
|
2022-05-30 14:18:02 +02:00
|
|
|
"eslint-config-prettier": "^8.5.0",
|
2022-05-31 10:23:18 +02:00
|
|
|
"eslint-plugin-jest": "^26.4.6",
|
2022-04-29 15:51:09 +02:00
|
|
|
"eslint-plugin-prettier": "^4.0.0",
|
|
|
|
|
"eslint-plugin-unused-imports": "^2.0.0",
|
2022-05-31 09:14:21 +02:00
|
|
|
"glob": "^8.0.3",
|
2022-04-29 15:51:09 +02:00
|
|
|
"jest": "^27.4.7",
|
2022-05-30 14:17:32 +02:00
|
|
|
"prettier": "^2.6.2",
|
2022-04-29 15:51:09 +02:00
|
|
|
"rimraf": "^3.0.2",
|
|
|
|
|
"ts-jest": "^27.1.4",
|
2022-06-06 16:48:55 +02:00
|
|
|
"ts-node": "^10.8.1",
|
2022-06-06 16:39:22 +02:00
|
|
|
"typescript": "^4.7.3"
|
2022-04-29 15:51:09 +02:00
|
|
|
},
|
|
|
|
|
"engines": {
|
|
|
|
|
"node": ">=12.0.0",
|
2022-05-05 13:36:55 +02:00
|
|
|
"npm": ">=6.0.0",
|
2022-06-03 09:09:58 +02:00
|
|
|
"bee": "1.6.1"
|
2022-04-29 15:51:09 +02:00
|
|
|
}
|
2022-07-11 11:56:48 +02:00
|
|
|
}
|