2021-04-23 16:16:35 +02:00
|
|
|
{
|
2022-04-29 15:51:09 +02:00
|
|
|
"name": "@ethersphere/bee-factory",
|
2022-12-14 14:14:31 +01:00
|
|
|
"version": "0.5.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-10-26 06:45:46 -07:00
|
|
|
"@ethersphere/bee-js": "^5.0.0",
|
|
|
|
|
"chalk": "^4.1.2",
|
|
|
|
|
"dockerode": "^3.3.4",
|
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",
|
2022-11-08 04:58:13 -08:00
|
|
|
"ora": "^5.3.0",
|
|
|
|
|
"semver": "^7.3.8"
|
2021-04-23 16:16:35 +02:00
|
|
|
},
|
2022-04-29 15:51:09 +02:00
|
|
|
"devDependencies": {
|
2022-10-26 06:45:46 -07:00
|
|
|
"@commitlint/cli": "^17.1.2",
|
|
|
|
|
"@commitlint/config-conventional": "^17.1.0",
|
2022-11-08 04:58:13 -08:00
|
|
|
"@ethersphere/jest-serial-runner": "^1.0.0",
|
2022-04-29 15:51:09 +02:00
|
|
|
"@fluffy-spoon/substitute": "^1.208.0",
|
2022-10-26 06:45:46 -07:00
|
|
|
"@jest/types": "^29.2.1",
|
|
|
|
|
"@types/dockerode": "^3.3.11",
|
2022-11-08 12:43:22 +01:00
|
|
|
"@types/jest": "^29.2.2",
|
2022-10-26 06:45:46 -07:00
|
|
|
"@types/node": "^18.11.3",
|
|
|
|
|
"@typescript-eslint/eslint-plugin": "^5.40.1",
|
|
|
|
|
"@typescript-eslint/parser": "^5.40.1",
|
2022-04-29 15:51:09 +02:00
|
|
|
"depcheck": "^1.4.3",
|
2022-11-08 08:19:01 +01:00
|
|
|
"eslint": "^8.27.0",
|
2022-05-30 14:18:02 +02:00
|
|
|
"eslint-config-prettier": "^8.5.0",
|
2022-10-26 06:45:46 -07:00
|
|
|
"eslint-plugin-jest": "^27.1.3",
|
|
|
|
|
"eslint-plugin-prettier": "^4.2.1",
|
2022-04-29 15:51:09 +02:00
|
|
|
"eslint-plugin-unused-imports": "^2.0.0",
|
2022-11-08 12:43:22 +01:00
|
|
|
"jest": "^29.3.0",
|
2022-10-26 06:45:46 -07:00
|
|
|
"jest-runner": "^29.2.1",
|
|
|
|
|
"prettier": "^2.7.1",
|
2022-04-29 15:51:09 +02:00
|
|
|
"rimraf": "^3.0.2",
|
2022-10-26 06:45:46 -07:00
|
|
|
"ts-jest": "^29.0.3",
|
|
|
|
|
"ts-node": "^10.9.1",
|
|
|
|
|
"typescript": "^4.8.4"
|
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-11-08 04:58:13 -08:00
|
|
|
"bee": "1.9.0",
|
|
|
|
|
"supportedBee": ">=1.9.0"
|
2022-04-29 15:51:09 +02:00
|
|
|
}
|
2022-07-11 11:56:48 +02:00
|
|
|
}
|