UNPKG

2.51 kBJSONView Raw
1{
2 "name": "@arkecosystem/core-debugger-cli",
3 "description": "Debugger CLI for Ark Core",
4 "version": "2.2.2",
5 "contributors": [
6 "Brian Faust <brian@ark.io>"
7 ],
8 "license": "MIT",
9 "main": "dist/index.js",
10 "files": [
11 "/bin",
12 "/dist",
13 "/oclif.manifest.json"
14 ],
15 "bin": {
16 "debugger": "./bin/run"
17 },
18 "scripts": {
19 "debugger": "./bin/run",
20 "publish:alpha": "npm publish --tag alpha",
21 "publish:beta": "npm publish --tag beta",
22 "publish:rc": "npm publish --tag rc",
23 "publish:latest": "npm publish --tag latest",
24 "prepublishOnly": "yarn build",
25 "pretest": "yarn lint && yarn build",
26 "prepack": "oclif-dev manifest && npm shrinkwrap",
27 "postpack": "rm -f oclif.manifest.json",
28 "compile": "../../node_modules/typescript/bin/tsc",
29 "build": "yarn clean && yarn compile",
30 "build:watch": "yarn clean && yarn compile -w",
31 "clean": "del dist",
32 "docs": "../../node_modules/typedoc/bin/typedoc src --out docs",
33 "lint": "../../node_modules/tslint/bin/tslint -c ../../tslint.json 'src/**/*.ts' '__tests__/**/*.ts' --fix",
34 "test": "cross-env CORE_ENV=test jest --runInBand --forceExit",
35 "test:coverage": "cross-env CORE_ENV=test jest --coverage --coveragePathIgnorePatterns='/(defaults.ts|index.ts)$' --runInBand --forceExit",
36 "test:debug": "cross-env CORE_ENV=test node --inspect-brk ../../node_modules/.bin/jest --runInBand",
37 "test:watch": "cross-env CORE_ENV=test jest --runInBand --watch",
38 "test:watch:all": "cross-env CORE_ENV=test jest --runInBand --watchAll",
39 "updates": "../../node_modules/npm-check-updates/bin/npm-check-updates -a"
40 },
41 "dependencies": {
42 "@arkecosystem/crypto": "^2.2.2",
43 "@oclif/command": "^1.5.10",
44 "@oclif/config": "^1.12.6",
45 "@oclif/plugin-help": "^2.1.6",
46 "@oclif/plugin-not-found": "^1.2.2",
47 "clipboardy": "^1.2.3"
48 },
49 "devDependencies": {
50 "@oclif/dev-cli": "^1.21.3",
51 "@types/clipboardy": "^1.1.0"
52 },
53 "publishConfig": {
54 "access": "public"
55 },
56 "engines": {
57 "node": ">=10.x"
58 },
59 "jest": {
60 "preset": "../../jest-preset.json"
61 },
62 "oclif": {
63 "commands": "./dist/commands",
64 "bin": "debugger",
65 "plugins": [
66 "@oclif/plugin-help",
67 "@oclif/plugin-not-found"
68 ]
69 }
70}