This repository was archived by the owner on Aug 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.09 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.09 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
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
{
"name": "blockstack-cli",
"version": "1.0.0",
"description": "Node.js Blockstack CLI",
"main": "lib/index.js",
"engines": {
"node": ">=8"
},
"scripts": {
"build": "tsc -b ./tsconfig.json",
"prepare": "npm run build",
"test": "npm run lint",
"lint": "eslint src --ext .ts -f unix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blockstack/cli-blockstack.git"
},
"author": {
"name": "Jude Nelson",
"email": "jude@blockstack.com",
"url": "https://blockstack.com"
},
"license": "MIT",
"bin": {
"blockstack-cli": "./cmd/index.js"
},
"bugs": {
"url": "https://github.com/blockstack/cli-blockstack/issues"
},
"keywords": [
"blockchain",
"id",
"auth",
"authentication",
"bitcoin",
"blockchain auth",
"blockchain authentication",
"blockchainid",
"blockchain id",
"bitcoin auth",
"bitcoin authentication",
"bitcoin login",
"blockchain login",
"authorization",
"login",
"signin",
"sso",
"crypto",
"cryptography",
"token",
"blockstack",
"blockstack auth",
"profile",
"identity",
"ethereum"
],
"homepage": "https://blockstack.org",
"contributors": [
{
"name": "Jude Nelson"
}
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.0.0",
"@typescript-eslint/parser": "^2.0.0",
"eslint": "^6.1.0",
"ts-node": "^8.3.0",
"typescript": "^3.5.3",
"minimist": ">=1.2.3"
},
"dependencies": {
"@types/bn.js": "^4.11.5",
"@types/cors": "^2.8.5",
"@types/express": "^4.16.1",
"@types/express-winston": "^3.0.1",
"@types/node": "^11.13.8",
"@types/node-fetch": "^2.5.0",
"@types/ripemd160": "^2.0.0",
"ajv": "^4.11.5",
"bip32": "^2.0.4",
"bip39": "^3.0.2",
"bitcoinjs-lib": "^5.1.2",
"blockstack": "19.2.8",
"c32check": "^0.0.6",
"cors": "^2.8.4",
"express": "^4.16.0",
"express-winston": "^3.1.0",
"jsontokens": "^2.0.2",
"node-fetch": "^2.6.0",
"ripemd160": "^2.0.1",
"winston": "^3.2.1",
"zone-file": "^0.2.2"
}
}