Files
trezor-suite/scripts/package-template/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

14 lines
374 B
JSON

{
"name": "suite-package-template",
"version": "1.0.0",
"main": "src/index",
"license": "See LICENSE.md in repo root",
"private": true,
"sideEffects": false,
"scripts": {
"type-check": "tsc --build",
"lint:js": "yarn g:eslint '**/*.{ts,tsx,js}'",
"test:unit": "jest -c ../../jest.config.base.js --passWithNoTests"
}
}