Skip to content
This repository was archived by the owner on Mar 28, 2023. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .eslintignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
build/*
File renamed without changes.
8 changes: 0 additions & 8 deletions jsconfig.json

This file was deleted.

11 changes: 7 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
{
"name": "@keep-network/tbtc.js",
"version": "0.18.0-rc",
"type": "module",
"description": "tbtc.js provides JS bindings to the tBTC system that establishes a TBTC ERC20 token supply-pegged to BTC.",
"repository": {
"type": "git",
Expand All @@ -11,14 +10,17 @@
"url": "https://github.com/keep-network/tbtc.js/issues"
},
"homepage": "https://github.com/keep-network/tbtc.js",
"main": "index.js",
"main": "build/index.js",
"types": "build/index.d.ts",
"bin": "./bin/tbtc.js",
"files": [
"bin/",
"src/",
"build/",
"index.js"
],
"scripts": {
"build": "tsc",
"test": "mocha --timeout 10000",
"lint": "npm run lint:js",
"lint:fix": "npm run lint:fix:js",
Expand All @@ -45,8 +47,9 @@
"chai": "^4.2.0",
"eslint": "^6.8.0",
"eslint-config-keep": "git+https://github.com/keep-network/eslint-config-keep.git#0.3.0",
"prettier": "^1.19.1",
"fs": "0.0.1-security",
"mocha": "^6.2.0"
"mocha": "^6.2.0",
"prettier": "^1.19.1",
"typescript": "^3.9.7"
}
}
Loading