-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.56 KB
/
package.json
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
{
"name": "pastebee-cli",
"version": "0.2.0",
"description": "Cli tool for pasting logs to Bee",
"keywords": [
"Bee",
"Swarm",
"CLI",
"swarm-cli",
"Decentralised Storage"
],
"bin": {
"pastebee": "./dist/index.js"
},
"homepage": "https://github.com/auhau/pastebee-cli",
"bugs": {
"url": "https://github.com/auhau/pastebee-cli/issues/"
},
"files": [
"dist"
],
"license": "MIT",
"main": "",
"repository": {
"type": "git",
"url": "https://github.com/auhau/pastebee-cli.git"
},
"scripts": {
"compile": "rimraf ./dist && tsc",
"depcheck": "depcheck .",
"prepare": "npm run compile",
"start": "ts-node src/index.ts",
"types:check": "tsc --project tsconfig.test.json",
"lint": "eslint --fix \"src/**/*.ts\" && prettier --write \"src/**/*.ts\"",
"lint:check": "eslint \"src/**/*.ts\" && prettier --check \"src/**/*.ts\""
},
"engines": {
"node": ">=12.0.0",
"npm": ">=6.0.0"
},
"devDependencies": {
"@types/node": "^14.14.16",
"@types/yargs": "^17.0.4",
"@typescript-eslint/eslint-plugin": "^4.11.0",
"@typescript-eslint/parser": "^4.11.0",
"depcheck": "^1.4.2",
"eslint": "^7.16.0",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-prettier": "^3.3.0",
"eslint-plugin-unused-imports": "^1.1.5",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"dependencies": {
"@ethersphere/bee-js": "^2.1.0",
"ora": "^5.3.0",
"yargs": "^17.2.1"
}
}