-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
111 lines (111 loc) · 3.07 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "blockstack-subdomain-registrar",
"version": "1.3.1",
"description": "A subdomain registrar for Blockstack",
"main": "lib/index.js",
"dependencies": {
"@promster/express": "^3.2.0",
"@promster/server": "^3.2.0",
"@stacks/network": "^1.2.2",
"@stacks/transactions": "^1.0.0-beta.20",
"async-lock": "^1.1.3",
"bitcoinjs-lib": "^3.3.2",
"blockstack": "^21.1.1",
"bn.js": "^4.11.9",
"cors": "^2.8.4",
"crypto": "^1.0.1",
"express": "^4.16.2",
"node-fetch": "^2.6.7",
"prom-client": "^11.5.3",
"ripemd160": "^2.0.1",
"sqlite3": "^5.0.2",
"winston": "^2.4.0",
"zone-file": "^0.2.3"
},
"devDependencies": {
"@babel/cli": "^7.6.3",
"@babel/core": "^7.17.5",
"@babel/eslint-parser": "^7.17.0",
"@babel/preset-env": "^7.6.3",
"@babel/preset-flow": "^7.0.0",
"@babel/register": "^7.7.4",
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@istanbuljs/nyc-config-babel": "^2.1.1",
"@stacks/eslint-config": "^1.2.0",
"babel-eslint": "^10.0.3",
"babel-plugin-istanbul": "^5.2.0",
"dotenv": "^8.2.0",
"eslint": "^6.7.1",
"eslint-plugin-prettier": "^4.0.0",
"flow-bin": "^0.109.0",
"husky": "^6.0.0",
"nock": "^9.1.6",
"nyc": "^14.1.1",
"tape": "^4.6.3",
"typescript": "^4.6.3"
},
"bin": {
"blockstack-subdomain-registrar": "lib/index.js"
},
"scripts": {
"start": "npm run build && node lib/index.js",
"start:regtest": "BSK_SUBDOMAIN_CONFIG=config-develop.json BSK_SUBDOMAIN_REGTEST=true npm run start",
"start:testnet": "BSK_SUBDOMAIN_TESTNET=true npm run start",
"build": "babel src -d lib",
"flow": "flow",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"compile-tests": "npm run lint && npm run flow && npm run build && babel tests/src -d tests/lib",
"test-inner": "npm run compile-tests && node tests/lib/index.js",
"test": "nyc --reporter=text npm run test-inner",
"report-lcov": "nyc report --reporter=lcov",
"prepare": "husky install"
},
"nyc": {
"extends": "@istanbuljs/nyc-config-babel",
"all": true,
"include": [
"src/**"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/stacks-network/subdomain-registrar.git"
},
"author": {
"name": "Blockstack PBC",
"email": "[email protected]",
"url": "https://blockstack.com"
},
"license": "MIT",
"contributors": [
{
"name": "Aaron Blankstein"
}
],
"bugs": {
"url": "https://github.com/stacks-network/subdomain-registrar/issues"
},
"homepage": "https://github.com/stacks-network/subdomain-registrar#readme",
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/npm",
{
"npmPublish": false
}
],
"@semantic-release/github",
"@semantic-release/changelog",
"@semantic-release/git"
]
}
}