This repository has been archived by the owner on Jul 7, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
87 lines (87 loc) · 2.73 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
87
{
"name": "@arkecosystem/crypto-fixture-generator",
"version": "1.0.0",
"description": "A CLI to generate cryptography & transaction fixtures for the Ark Blockchain.",
"keywords": [
"ark",
"blockchain",
"cli",
"crypto",
"testing"
],
"license": "MIT",
"contributors": [
"Brian Faust <brian@ark.io>"
],
"files": [
"/bin",
"/dist",
"/oclif.manifest.json"
],
"main": "dist/index",
"types": "dist/index",
"bin": {
"fixture": "./bin/run"
},
"scripts": {
"fixture": "./bin/run",
"build": "yarn clean && tsc",
"build:watch": "yarn build -w",
"clean": "rimraf .coverage dist tmp",
"lint": "./node_modules/eslint/bin/eslint.js src --ext .ts --fix",
"format": "yarn lint && yarn prettier",
"prettier": "prettier --write \"./*.{ts,js,json,md}\" \"./src/**/*.{ts,js,json,md}\"",
"prepack": "./node_modules/.bin/oclif-dev manifest && npm shrinkwrap",
"postpack": "rm -f oclif.manifest.json",
"prepublishOnly": "yarn build"
},
"dependencies": {
"@arkecosystem/crypto": "^2.6.0-alpha.1",
"@oclif/command": "^1.5.19",
"@oclif/config": "^1.13.3",
"@oclif/plugin-autocomplete": "^0.2.0",
"@oclif/plugin-commands": "^1.2.3",
"@oclif/plugin-help": "^3.0.0",
"@oclif/plugin-not-found": "^1.2.3",
"@oclif/plugin-plugins": "^1.7.8",
"cli-table3": "^0.5.1",
"clipboardy": "^2.1.0"
},
"devDependencies": {
"@commitlint/cli": "^9.0.0",
"@commitlint/config-conventional": "^9.0.0",
"@oclif/dev-cli": "^1.22.2",
"@sindresorhus/tsconfig": "^0.7.0",
"@types/eslint": "^7.0.0",
"@types/eslint-plugin-prettier": "^3.0.0",
"@types/prettier": "^2.0.0",
"@typescript-eslint/eslint-plugin": "^2.6.1",
"@typescript-eslint/parser": "^2.6.1",
"eslint": "^7.0.0",
"eslint-config-prettier": "^6.5.0",
"eslint-plugin-jest": "^23.0.2",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-simple-import-sort": "^5.0.0",
"husky": "^4.0.0",
"jest": "^26.0.0",
"jest-extended": "^0.11.2",
"lint-staged": "^10.0.0",
"prettier": "^2.0.0",
"typescript": "^3.7.2"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"oclif": {
"commands": "./dist/commands",
"bin": "crypto-fixture-generator",
"plugins": [
"@oclif/plugin-autocomplete",
"@oclif/plugin-commands",
"@oclif/plugin-help"
]
}
}