Skip to content

Commit

Permalink
fix: formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
Nesopie committed Jul 22, 2024
1 parent b85efe6 commit c70e256
Show file tree
Hide file tree
Showing 3 changed files with 562 additions and 644 deletions.
126 changes: 63 additions & 63 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,66 +1,66 @@
{
"name": "uint8array-tools",
"version": "0.0.7",
"description": "A library for dealing with Uint8Arrays.",
"homepage": "https://github.com/bitcoinjs/uint8array-tools#readme",
"bugs": {
"url": "https://github.com/bitcoinjs/uint8array-tools/issues"
"name": "uint8array-tools",
"version": "0.0.7",
"description": "A library for dealing with Uint8Arrays.",
"homepage": "https://github.com/bitcoinjs/uint8array-tools#readme",
"bugs": {
"url": "https://github.com/bitcoinjs/uint8array-tools/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/bitcoinjs/uint8array-tools.git"
},
"main": "./src/cjs/index.cjs",
"exports": {
"node": {
"module": "./src/mjs/index.js",
"require": "./src/cjs/index.cjs",
"import": "./src/mjs/index.js",
"types": "./src/cjs/index.d.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/bitcoinjs/uint8array-tools.git"
},
"main": "./src/cjs/index.cjs",
"exports": {
"node": {
"module": "./src/mjs/index.js",
"require": "./src/cjs/index.cjs",
"import": "./src/mjs/index.js",
"types": "./src/cjs/index.d.ts"
},
"browser": "./src/mjs/browser.js",
"default": "./src/mjs/browser.js",
"types": "./src/cjs/index.d.ts"
},
"types": "src/cjs/index.d.ts",
"type": "module",
"scripts": {
"build": "npm run clean && npm run build-ts && npm run convert-cjs && rm -f ./src/cjs/browser.d.ts",
"build-ts": "tsc -p tsconfig.json && tsc -p tsconfig-cjs.json",
"clean": "rm -rf ./src/* && rm -rf ./coverage && rm -f ./package-lock.json",
"convert-cjs": "for f in ./src/cjs/*.js; do mv -- \"$f\" \"${f%.js}.cjs\"; done",
"coverage": "npm run unit -- --coverage",
"eslint": "eslint ts_src/*.ts",
"format": "npm run eslint -- --fix",
"gitdiff:ci": "npm run build && git diff --exit-code",
"lint": "npm run eslint",
"test": "npm run unit",
"unit": "jest --config=jest.json --runInBand"
},
"keywords": [
"uint8array",
"hex",
"tools"
],
"files": [
"src"
],
"author": "Jonathan Underwood (junderwood@bitcoinbank.co.jp)",
"license": "MIT",
"devDependencies": {
"@types/jest": "27.0.2",
"@types/node": "16.11.1",
"@typescript-eslint/eslint-plugin": "5.0.0",
"@typescript-eslint/parser": "5.0.0",
"eslint": "8.0.1",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "4.0.0",
"jest": "27.2.5",
"prettier": "2.4.1",
"ts-jest": "27.0.7",
"typescript": "4.4.4"
},
"engines": {
"node": ">=14.0.0"
}
"browser": "./src/mjs/browser.js",
"default": "./src/mjs/browser.js",
"types": "./src/cjs/index.d.ts"
},
"types": "src/cjs/index.d.ts",
"type": "module",
"scripts": {
"build": "npm run clean && npm run build-ts && npm run convert-cjs && rm -f ./src/cjs/browser.d.ts",
"build-ts": "tsc -p tsconfig.json && tsc -p tsconfig-cjs.json",
"clean": "rm -rf ./src/* && rm -rf ./coverage && rm -f ./package-lock.json",
"convert-cjs": "for f in ./src/cjs/*.js; do mv -- \"$f\" \"${f%.js}.cjs\"; done",
"coverage": "npm run unit -- --coverage",
"eslint": "eslint ts_src/*.ts",
"format": "npm run eslint -- --fix",
"gitdiff:ci": "npm run build && git diff --exit-code",
"lint": "npm run eslint",
"test": "npm run unit",
"unit": "jest --config=jest.json --runInBand"
},
"keywords": [
"uint8array",
"hex",
"tools"
],
"files": [
"src"
],
"author": "Jonathan Underwood (junderwood@bitcoinbank.co.jp)",
"license": "MIT",
"devDependencies": {
"@types/jest": "27.0.2",
"@types/node": "16.11.1",
"@typescript-eslint/eslint-plugin": "5.0.0",
"@typescript-eslint/parser": "5.0.0",
"eslint": "8.0.1",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "4.0.0",
"jest": "27.2.5",
"prettier": "2.4.1",
"ts-jest": "27.0.7",
"typescript": "4.4.4"
},
"engines": {
"node": ">=14.0.0"
}
}
Loading

0 comments on commit c70e256

Please sign in to comment.