-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.23 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.23 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
{
"name": "@ukstv/ipfs-fleet",
"version": "0.0.5",
"description": "Manage fleet of connected IPFS nodes in JS",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/"
],
"scripts": {
"build": "./node_modules/.bin/rimraf lib/ && ./node_modules/.bin/tsc --project tsconfig.json",
"test": "jest"
},
"author": "Sergey Ukustov <sergey@ukstv.me>",
"license": "MIT",
"keywords": [
"ipfs",
"testing",
"fleet"
],
"engines": {
"node": ">=12",
"pnpm": ">=5.4"
},
"repository": {
"type": "git",
"url": "https://github.com/ukstv/ipfs-fleet.git"
},
"homepage": "https://github.com/ukstv/ipfs-fleet#readme",
"bugs": {
"url": "https://github.com/ukstv/ipfs-fleet/issues",
"email": "sergey+bug@ukstv.me"
},
"devDependencies": {
"@types/faker": "^5.5.7",
"@types/jest": "^26.0.24",
"faker": "^5.5.3",
"jest": "^27.0.6",
"jest-resolver-enhanced": "^1.0.1",
"prettier": "^2.3.2",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.3",
"ts-node": "^10.1.0",
"typescript": "^4.3.5"
},
"dependencies": {
"get-port": "^5.1.1",
"ipfs-core": "^0.8.0",
"merge-options": "^3.0.4",
"tmp-promise": "^3.0.2",
"tslib": "^2.3.0"
}
}