-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.25 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "@ethersphere/swarm-cli",
"version": "2.31.0",
"description": "CLI tool for Bee",
"keywords": [
"Bee",
"Swarm",
"CLI",
"swarm-cli",
"Decentralised Storage"
],
"bin": {
"swarm-cli": "./dist/src/index.js"
},
"homepage": "https://github.com/ethersphere/swarm-cli",
"bugs": {
"url": "https://github.com/ethersphere/swarm-cli/issues/"
},
"license": "BSD-3-Clause",
"main": "dist/src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/ethersphere/swarm-cli.git"
},
"scripts": {
"prepare": "npm run build",
"build": "rimraf dist && tsc",
"test": "jest --config=jest.config.ts",
"test:coverage": "jest --config=jest.config.ts --coverage",
"check": "tsc --project tsconfig.test.json",
"start": "ts-node src/index.ts",
"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\"",
"bee": "npx @fairdatasociety/fdp-play@3.3.0 start --detach --fresh"
},
"engines": {
"node": ">=14.0.0",
"npm": ">=6.0.0",
"bee": "1.9.0-13a47043"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/cli-progress": "^3.8.0",
"@types/inquirer": "^8.2.5",
"@types/jest": "^29.2.3",
"@types/node": "^18.11.9",
"@types/node-fetch": "^2.6.12",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^27.1.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^4.3.6",
"jest": "^29.3.1",
"prettier": "^2.7.1",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.3",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"dependencies": {
"@ethereumjs/wallet": "^2.0.4",
"@ethersphere/bee-js": "^9.4.0",
"cafe-utility": "^27.14.0",
"chalk": "^2.4.2",
"cli-progress": "^3.11.2",
"ethers": "^5.7.2",
"furious-commander": "^1.7.1",
"inquirer": "^8.2.5",
"node-fetch": "^2.7.0",
"ora": "^5.3.0",
"ws": "^8.11.0"
}
}