-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.33 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "pulsarcast",
"version": "0.2.0",
"description": "A libp2p compatible pubsub module of the pulsarcast system",
"main": "src/index.js",
"scripts": {
"fmt": "prettier --write '{,!(coverage)/**/}*.js' && eslint --fix .",
"fmt:ci": "prettier -l '{,!(coverage)/**/}*.js'",
"lint": "eslint .",
"test": "nyc --reporter=html --reporter=text mocha --recursive --bail --exit",
"test:ci": "npm run lint && npm run fmt:ci && npm test",
"docs": "jsdoc2md -f ./src/* ./src/**/* > docs/api.md"
},
"nyc": {
"exclude": [
"test/**",
"coverage/*",
"npm-debug.log",
".nyc_output"
],
"report-dir": "./coverage",
"cache": true,
"all": true,
"extension": [
".js"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm run test"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/JGAntunes/js-pulsarcast.git"
},
"keywords": [
"pubsub",
"libp2p",
"pulsarcast"
],
"author": "João Antunes <me@jgantunes.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/JGAntunes/js-pulsarcast/issues"
},
"homepage": "https://github.com/JGAntunes/js-pulsarcast#readme",
"dependencies": {
"async": "^2.6.1",
"bs58": "^4.0.1",
"cids": "^0.5.5",
"debug": "^3.1.0",
"ipld-dag-cbor": "^0.13.0",
"joi": "^13.4.0",
"joi-browser": "^13.4.0",
"peer-id": "^0.12.2",
"peer-info": "^0.14.1",
"protons": "^1.0.1",
"pull-length-prefixed": "^1.3.1",
"pull-stream": "^3.6.9"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^5.11.1",
"eslint-config-prettier": "^3.3.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"husky": "^1.3.0",
"jsdoc-to-markdown": "^5.0.0",
"libp2p": "jgantunes/js-libp2p",
"libp2p-kad-dht": "jgantunes/js-libp2p-kad-dht",
"libp2p-secio": "^0.11.1",
"libp2p-spdy": "^0.13.1",
"libp2p-tcp": "jgantunes/js-libp2p-tcp",
"lint-staged": "^8.1.0",
"mocha": "^5.2.0",
"nyc": "^14.0.0",
"prettier": "^1.15.3"
}
}