This repository has been archived by the owner on Mar 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
76 lines (76 loc) · 2.21 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
{
"name": "@paystring/paystring-cli",
"version": "2.0.0",
"description": "CLI for PayString",
"homepage": "https://github.com/paystring/paystring-cli#readme",
"bugs": {
"url": "https://github.com/paystring/paystring-cli/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/paystring/paystring-cli.git"
},
"license": "Apache-2.0",
"author": "",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"paystring": "./dist/cli.js"
},
"files": [
"dist/*"
],
"scripts": {
"build": "rm -rf dist && tsc --project .",
"lint": "eslint . --ext .ts --fix --max-warnings 0 && prettier --write '**/*.{md,json}'",
"lintNoFix": "eslint . --ext .ts --max-warnings 0 && prettier --check '**/*.{md,json}'",
"preinstall": "test -e ./package-lock.json && npx npm-force-resolutions || true",
"test": "nyc mocha 'test/**/*.test.ts'"
},
"dependencies": {
"@paystring/utils": "^2.0.0",
"axios": "^0.19.2",
"beautify-json": "^1.0.1",
"ec-key": "0.0.4",
"jose": "^3.5.0",
"vorpal": "^1.12.0"
},
"devDependencies": {
"@arkweid/lefthook": "^0.7.2",
"@fintechstudios/eslint-plugin-chai-as-promised": "^3.0.2",
"@types/chai": "^4.2.11",
"@types/mocha": "^7.0.2",
"@types/node": "^14.0.14",
"@types/node-forge": "^0.9.4",
"@types/pem-jwk": "^1.5.0",
"@types/vorpal": "^1.12.0",
"@typescript-eslint/eslint-plugin": "^3.7.1",
"@typescript-eslint/parser": "^3.7.1",
"@xpring-eng/eslint-config-base": "^0.11.0",
"@xpring-eng/eslint-config-mocha": "^1.0.0",
"chai": "^4.2.0",
"eslint": "^7.7.0",
"eslint-plugin-array-func": "^3.1.6",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsdoc": "^29.0.0",
"eslint-plugin-mocha": "^7.0.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-tsdoc": "^0.2.5",
"mocha": "^8.1.1",
"nyc": "^15.1.0",
"prettier": "^2.0.5",
"ts-node": "^8.10.2",
"tsc-watch": "^4.2.9",
"typescript": "^3.9.7"
},
"engines": {
"node": ">=12.0.0",
"npm": ">=6",
"yarn": "please use npm"
},
"resolutions": {
"lodash": "^4.17.20"
}
}