forked from stacks-network/c32check
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
138 lines (138 loc) · 3.2 KB
/
Copy pathpackage.json
File metadata and controls
138 lines (138 loc) · 3.2 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"name": "c32check",
"version": "1.1.3",
"description": "Crockford base-32 checksum encoding",
"main": "lib/index",
"unpkg": "dist/c32check.js",
"jsdelivr": "dist/c32check.js",
"prettier": "@blockstack/prettier-config",
"browser": {
"crypto": false
},
"scripts": {
"webpack": "rimraf lib dist && webpack --mode=production",
"webpack:analyze": "rimraf dist && cross-env NODE_ENV=production ANALYZE=true webpack --mode=production",
"compile": "rimraf lib && tsc",
"prepublishOnly": "npm run build",
"build": "npm run lint && npm run test && npm run webpack && npm run compile",
"lint": "eslint --ext=.ts -f=codeframe ./src ./tests",
"prettier": "prettier --write ./src/**/*.ts",
"test": "nyc node ./tests/unitTests/src/index.ts",
"data-set-test": "cross-env BIG_DATA_TESTS=1 nyc node ./tests/unitTests/src/index.ts",
"codecovUpload": "codecov"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blockstack/c32check.git"
},
"author": {
"name": "Jude Nelson",
"email": "jude@blockstack.com",
"url": "https://blockstack.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/blockstack/c32check/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",
"email": "jude@blockstack.com"
},
{
"name": "Aaron Blankstein",
"email": "aaron@blockstack.com"
},
{
"name": "Matthew Little",
"email": "matt@blockstack.com"
}
],
"files": [
"src",
"lib",
"dist"
],
"devDependencies": {
"@babel/core": "^7.11.1",
"@babel/preset-env": "^7.11.0",
"@blockstack/prettier-config": "0.0.6",
"@types/bs58": "^4.0.1",
"@types/node": "^8.0.0",
"@typescript-eslint/eslint-plugin": "^3.9.1",
"@typescript-eslint/parser": "^3.9.1",
"babel-loader": "^8.1.0",
"codecov": "^3.7.2",
"cross-env": "^7.0.2",
"eslint": "^7.7.0",
"nyc": "^15.1.0",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"source-map-support": "^0.5.19",
"tape": "^5.0.1",
"tape-promise": "^4.0.0",
"ts-loader": "^8.0.2",
"ts-node": "^8.10.2",
"typescript": "^3.9.7",
"webpack": "^4.44.1",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-cli": "^3.3.12"
},
"dependencies": {
"base-x": "^3.0.8",
"buffer": "^5.6.0",
"cross-sha256": "^1.2.0"
},
"engines": {
"node": ">=8"
},
"nyc": {
"cache": false,
"all": true,
"extension": [
".ts"
],
"include": [
"src/**/*.ts"
],
"exclude": [
"**/*.d.ts"
],
"require": [
"ts-node/register/transpile-only",
"source-map-support/register"
],
"reporter": [
"text",
"lcov"
]
}
}