-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.3 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
{
"name": "dashjoin",
"version": "1.0.0",
"description": "JavaScript reference implementation of CoinJoin",
"main": "index.js",
"files": [
"*.js"
],
"scripts": {
"bump": "npm version -m \"chore(release): bump to v%s\"",
"fmt": "npm run prettier",
"lint": "npm run jshint",
"--------": "-------------------------------------------------",
"jshint": "npx -p [email protected] -- jshint -c ./.jshintrc ./*.js",
"prettier": "npx -p [email protected] -- prettier -w '**/*.{js,md}'",
"tsc": "npx -p [email protected] -- tsc -p ./jsconfig.json",
"---------": "------------------------------------------------",
"test": "node ./tests/"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/dashhive/DashJoin.js.git"
},
"keywords": [
"Dash",
"CoinJoin",
"PrivateSend",
"Crpytocurrency"
],
"author": "AJ ONeal <[email protected]> (https://therootcompany.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/dashhive/DashJoin.js/issues"
},
"homepage": "https://github.com/dashhive/DashJoin.js#readme",
"dependencies": {
"@dashincubator/secp256k1": "^1.7.1-5",
"dashhd": "^3.3.3",
"dashkeys": "^1.1.4",
"dashphrase": "^1.4.0",
"dashrpc": "^19.0.1",
"dashtx": "^0.18.1",
"dotenv": "^16.4.5"
}
}