-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.71 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
{
"name": "bch-nostr",
"version": "1.0.2",
"description": "Utility library for interaction between BCH and Nostr.",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node index.js",
"test": "npm run lint && TEST=unit c8 mocha --timeout 10000 test/unit/",
"test:integration": "mocha --timeout 25000 test/integration/",
"test:e2e": "mocha --timeout 60000 test/e2e/",
"lint": "standard --env mocha --fix",
"docs": "./node_modules/.bin/apidoc -i src/ -o docs",
"coverage": "c8 report --reporter=text-lcov | coveralls",
"coverage:report": "c8 --reporter=html mocha --timeout 10000 test/unit/ --exit"
},
"keywords": [
"bitcoin",
"bitcoin cash",
"wallet",
"javascript",
"cryptocurrency",
"react",
"front end",
"client",
"apidoc",
"slp",
"tokens"
],
"author": "Chris Troutner <chris.troutner@gmail.com>",
"license": "MIT",
"apidoc": {
"title": "bch-nostr",
"url": "localhost:5000"
},
"repository": "Permissionless-Software-Foundation/bch-nostr",
"dependencies": {
"apidoc": "0.53.0",
"base58-js": "2.0.0",
"bch-message-lib": "2.3.1",
"nostr": "0.2.8",
"@chris.troutner/nostr-tools": "2.10.4",
"ws": "8.18.0"
},
"devDependencies": {
"c8": "7.12.0",
"chai": "4.3.6",
"coveralls": "3.1.1",
"husky": "8.0.1",
"lodash.clonedeep": "4.5.0",
"minimal-slp-wallet": "5.12.1",
"mocha": "10.0.0",
"semantic-release": "19.0.5",
"sinon": "14.0.0",
"standard": "17.0.0"
},
"release": {
"publish": [
{
"path": "@semantic-release/npm",
"npmPublish": true
}
]
},
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
}
}