-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.55 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.55 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
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "hashmap-client",
"version": "0.2.0",
"description": "library for interacting with hashmap payloads and hashmap server",
"main": "./dist/index.js",
"scripts": {
"test": "tsc && nyc mocha --require ts-node/register index-test.ts",
"coverage": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
},
"nyc": {
"include": [
"dist/index.js"
],
"exclude": [
"typings"
],
"extension": [
".ts",
".js"
],
"require": [
"ts-node/register"
],
"reporter": [
"lcov",
"text-summary"
],
"all": true
},
"repository": {
"type": "git",
"url": "git+https://github.com/nomasters/hashmap-client-js.git"
},
"author": "",
"license": "Unlicense",
"bugs": {
"url": "https://github.com/nomasters/hashmap-client-js/issues"
},
"homepage": "https://github.com/nomasters/hashmap-client-js#readme",
"dependencies": {
"@types/big-integer": "0.0.31",
"@types/bluebird": "3.5.36",
"@types/request-promise": "4.1.48",
"big-integer": "1.6.48",
"blakejs": "1.1.1",
"multihashes": "4.0.2",
"request": "2.88.2",
"request-promise": "4.2.6",
"tweetnacl": "1.0.3"
},
"devDependencies": {
"@types/chai": "4.2.21",
"@types/chai-as-promised": "7.1.4",
"@types/mocha": "9.0.0",
"chai": "4.3.4",
"chai-as-promised": "7.1.1",
"coveralls": "3.1.1",
"mocha": "9.0.3",
"mocha-lcov-reporter": "^1.3.0",
"nock": "13.1.1",
"nyc": "15.1.0",
"ts-node": "10.2.0",
"typescript": "4.3.5"
}
}