forked from bitname-protocol/bitname-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.42 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.42 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
{
"name": "bitname-cli",
"version": "0.0.2",
"main": "index.js",
"author": "Colin Atkinson",
"description": "Associate public keys with names on the Bitcoin blockchain",
"keywords": [
"typescript",
"bitcoin",
"cryptography"
],
"homepage": "https://github.com/colatkinson/bitname-cli",
"bugs": "https://waffle.io/colatkinson/bitname-cli",
"repository": {
"type": "git",
"url": "https://github.com/colatkinson/bitname-cli.git"
},
"license": "LGPL-3.0-or-later",
"private": true,
"devDependencies": {
"@types/jest": "^21.1.9",
"@types/node-fetch": "^1.6.7",
"@types/yargs": "^10.0.0",
"jest": "^22.0.4",
"ts-jest": "^22.0.0",
"ts-node": "^3.3.0",
"tslint": "^5.8.0",
"typescript": "^2.6.2"
},
"dependencies": {
"bcoin": "^1.0.0-beta.15",
"chalk": "^2.3.0",
"n64": "^0.0.18",
"node-fetch": "^1.7.3",
"randombytes": "^2.0.5",
"yargs": "^10.0.3"
},
"scripts": {
"start:dev": "ts-node index.ts",
"build": "tsc -p tsconfig.build.json",
"start": "npm run build && node dist/index.js",
"test": "jest"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"mapCoverage": true
},
"bin": {
"bitname": "dist/index.js"
}
}