Files
trezor-suite/packages/utils/package.json
Daniel Suchý a446583d58 chore(ci): Nx for github validations (#6095)
* chore(ci): Nx for github validations

* chore: tune config

* chore: eslint scripts faster and unified settings

* chore: check formatting using nx

* chore: read-only NX token
2022-08-25 18:51:12 +02:00

33 lines
1.0 KiB
JSON

{
"name": "@trezor/utils",
"version": "9.0.2",
"author": "Trezor <info@trezor.io>",
"homepage": "https://github.com/trezor/trezor-suite/tree/develop/packages/utils",
"description": "A collection of typescript utils that are intended to be used across trezor-suite monorepo.",
"license": "SEE LICENSE IN LICENSE.md",
"repository": {
"type": "git",
"url": "git://github.com/trezor/trezor-suite.git"
},
"bugs": {
"url": "https://github.com/trezor/trezor-suite/issues"
},
"sideEffects": false,
"main": "lib/index",
"files": [
"lib/",
"!**/*.map"
],
"scripts": {
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
"test:unit": "jest --verbose -c ../../jest.config.base.js",
"type-check": "tsc --build tsconfig.json",
"build:lib": "rimraf ./lib && yarn tsc --build tsconfig.lib.json"
},
"devDependencies": {
"jest": "^26.6.3",
"rimraf": "^3.0.2",
"typescript": "4.7.4"
}
}