-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
49 lines (49 loc) · 1.28 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
{
"name": "varint-decoder",
"version": "1.0.0",
"description": "Parse all the varints in a Buffer (for when there are varints everywhere)",
"main": "src/index.js",
"scripts": {
"lint": "aegir lint",
"build": "aegir build",
"test": "aegir test",
"test:node": "aegir test -t node",
"test:browser": "aegir test -t browser",
"release": "aegir release",
"release-minor": "aegir release --type minor",
"release-major": "aegir release --type major",
"coverage": "aegir coverage",
"coverage-publish": "aegir coverage publish"
},
"engines": {
"node": ">=4.0.0",
"npm": ">=3.0.0"
},
"dependencies": {
"varint": "^5.0.0"
},
"devDependencies": {
"aegir": "^25.0.0",
"buffer": "^5.6.0",
"uint8arrays": "^1.1.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/diasdavid/varint-decoder.git"
},
"keywords": [
"IPFS",
"varint"
],
"author": "David Dias ([email protected])",
"license": "MIT",
"bugs": {
"url": "https://github.com/diasdavid/varint-decoder/issues"
},
"homepage": "https://github.com/diasdavid/varint-decoder#readme",
"contributors": [
"David Dias <[email protected]>",
"achingbrain <[email protected]>",
"Hugo Dias <[email protected]>"
]
}