-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.11 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.11 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
{
"name": "cryptouri",
"version": "0.0.0",
"description": "URN-like namespace for cryptographic objects (keys, signatures, digests) with Bech32 encoding/checksums",
"homepage": "https://github.com/cryptouri/cryptouri.js/",
"main": "release/cryptouri.js",
"types": "src/cryptouri.ts",
"author": "Tony Arcieri",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/cryptouri/cryptouri.js.git"
},
"keywords": [
"bech32",
"cryptography",
"keys",
"security",
"uri"
],
"bugs": {
"url": "https://github.com/cryptouri/cryptouri.js/issues"
},
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha --require ts-node/register test/**/*.spec.ts"
},
"devDependencies": {
"@types/chai": "^4.1",
"@types/mocha": "^5.2",
"@types/node": "^13",
"async-file": "^2.0",
"chai": "^4.2",
"gulp": "^4.0",
"gulp-sourcemaps": "^2.6",
"gulp-typescript": "5.0",
"mocha": "^7.0",
"mocha-typescript": "^1.1",
"tjson-js": "^0.1",
"ts-node": "^8.3",
"typescript": "^3.0"
},
"dependencies": {}
}