-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.07 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
{
"name": "ipfs-testbed",
"version": "0.1.0",
"description": "IPFS Testbed CLI tool",
"bin": {
"ipt": "src/bin.js"
},
"scripts": {
"test": "echo \"Such tests, very wow\"",
"test:ci": "npm run lint && npm test",
"lint": "standard . | snazzy"
},
"pre-commit": [
"lint",
"test"
],
"repository": {
"type": "git",
"url": "git+https://github.com/JGAntunes/pulsarcast-test-harness.git"
},
"keywords": [
"ipfs",
"p2p",
"test",
"distributed",
"toxiproxy",
"elk",
"kubernetes"
],
"author": "João Antunes <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/JGAntunes/pulsarcast-test-harness/issues"
},
"homepage": "https://github.com/JGAntunes/pulsarcast-test-harness#readme",
"dependencies": {
"@kubernetes/client-node": "^0.7.2",
"ipfs-http-client": "jgantunes/js-ipfs-api",
"pull-stream": "^3.6.9",
"superagent": "^4.1.0",
"yargs": "^12.0.5"
},
"devDependencies": {
"pre-commit": "^1.2.2",
"snazzy": "^8.0.0",
"standard": "^12.0.1"
}
}