This repository has been archived by the owner on Jan 24, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
86 lines (86 loc) · 2.15 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
{
"name": "keybase-merkle-stellar",
"version": "0.0.2",
"description": "Query merkle root in Stellar blockchain",
"keywords": [
"keybase",
"merkle",
"stellar"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"homepage": "https://github.com/keybase/merkle-stellar",
"repository": "git@github.com:keybase/merkle-stellar.git",
"bugs": {
"url": "https://github.com/keybase/merkle-stellar/issues"
},
"author": "Maxwell Krohn <themax@gmail.com>",
"license": "BSD-3-Clause",
"engines": {
"node": ">=8.0.0"
},
"bin": {
"keybase-merkle-stellar-check": "./bin/check"
},
"files": [
"lib/*"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"eslint --fix"
],
"*.{json,md,ts}": [
"prettier --write",
"git add"
]
},
"scripts": {
"modules": "yarn --frozen-lockfile --prefer-offline",
"modules-prod": "yarn --frozen-lockfile --prefer-offline --prod",
"dev": "tsc --watch",
"test": "jest --runInBand",
"release": "standard-version",
"build": "rm -rf lib/ && tsc",
"clean": "rm -rf lib/"
},
"dependencies": {
"@msgpack/msgpack": "^1.11.0",
"axios": "^0.21.1",
"chalk": "^3.0.0",
"kbpgp": "^2.1.9",
"ora": "^4.0.3",
"spinnies": "^0.5.1",
"stellar-sdk": "^3.3.0",
"yargs": "^15.1.0"
},
"devDependencies": {
"@types/jest": "^26.0.22",
"@types/yargs": "^15.0.1",
"@typescript-eslint/eslint-plugin": "2.8.0",
"@typescript-eslint/parser": "2.0.0",
"eslint": "6.2.2",
"eslint-config-prettier": "6.7.0",
"eslint-config-standard": "14.1.0",
"eslint-plugin-filenames": "1.3.2",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-jsdoc": "15.8.3",
"eslint-plugin-node": "9.1.0",
"eslint-plugin-prettier": "3.1.1",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-standard": "4.0.1",
"husky": "3.0.0",
"jest": "^26.6.3",
"jest-mock-axios": "^4.3.0",
"lint-staged": "9.2.0",
"prettier": "1.19.1",
"regenerator-runtime": "0.13.2",
"standard-version": "8.0.1",
"ts-jest": "^26.5.4",
"typescript": "3.7.2"
}
}