Files
trezor-suite/scripts/package-template/package.json
2023-01-26 16:51:07 +01:00

15 lines
398 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"
},
"dependencies": {}
}