-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
56 lines (56 loc) · 1.17 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
{
"name": "gobitcoinsv",
"version": "0.0.5",
"main": "public/index.html",
"private": true,
"author": {
"name": "BitcoinSchema",
"email": "[email protected]",
"url": "https://gobitcoinsv.com"
},
"contributors": [
{
"name": "Satchmo",
"url": "https://github.com/rohenaz/"
},
{
"name": "MrZ",
"url": "https://github.com/mrz1836/"
}
],
"bugs": {
"url": "https://github.com/BitcoinSchema/gobitcoinsv/issues"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/BitcoinSchema/gobitcoinsv/"
},
"prettier": {
"singleQuote": true,
"semi": false
},
"browserslist": [
"last 1 Chrome versions",
"last 1 Safari versions"
],
"keywords": [
"go",
"golang",
"bitcoin",
"bitcoinsv",
"bsv"
],
"homepage": "https://github.com/BitcoinSchema/gobitcoinsv",
"scripts": {
"clean": "rm -rf .cache && rm -rf dist",
"reinstall": "rm -rf yarn.lock && rm -rf node_modules && rm -rf dist && rm -rf .cache && yarn",
"lint": "prettier --write ."
},
"engines": {
"node": "*"
},
"devDependencies": {
"prettier": "^3.4.2"
}
}