-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.27 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
{
"name": "vaporyjs-blockstream",
"namespace": "vaporyjs",
"version": "4.0.1",
"description": "A library to turn an unreliable remote source of Vapory blocks into a reliable stream of blocks with removals on re-orgs and backfills on skips.",
"main": "output/source/index.js",
"types": "output/source/index.d.ts",
"scripts": {
"build": "copyfiles tests/es5.js output/ && tsc",
"pretest": "npm run build",
"test": "mocha output/tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vaporyjs/vaporyjs-blockstream.git"
},
"author": "Micah Zoltu",
"license": "CC0-1.0",
"bugs": {
"url": "https://github.com/vaporyjs/vaporyjs-blockstream/issues"
},
"homepage": "https://github.com/vaporyjs/vaporyjs-blockstream#readme",
"devDependencies": {
"@types/chai": "3.4.35",
"@types/chai-as-promised": "0.0.30",
"@types/mocha": "2.2.40",
"@types/source-map-support": "0.2.28",
"@types/uuid": "2.0.29",
"chai": "3.5.0",
"chai-as-promised": "6.0.0",
"chai-immutable": "1.6.0",
"copyfiles": "1.2.0",
"coveralls": "2.13.0",
"istanbul": "0.4.5",
"mocha": "3.2.0",
"typescript": "2.2.2"
},
"dependencies": {
"immutable": "3.8.2",
"source-map-support": "0.4.14",
"uuid": "3.0.1"
}
}