74 lines
1.9 KiB
JSON
74 lines
1.9 KiB
JSON
{
|
|
"name": "@keystonehq/bc-ur-registry",
|
|
"version": "0.4.3",
|
|
"description": "A JS implementation of Uniform Resources(UR) Registry specification from Blockchain Commons",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/KeystoneHQ/ur-registry"
|
|
},
|
|
"main": "dist/index.js",
|
|
"types": "src/index.ts",
|
|
"directories": {
|
|
"lib": "src",
|
|
"test": "__tests__"
|
|
},
|
|
"files": [
|
|
"src",
|
|
"dist"
|
|
],
|
|
"devDependencies": {
|
|
"@babel/core": "^7.14.3",
|
|
"@babel/preset-env": "^7.6.3",
|
|
"@babel/preset-typescript": "^7.6.0",
|
|
"@types/bip39": "^3.0.0",
|
|
"@types/jest": "~26.0.23",
|
|
"@types/node": "~14.14.44",
|
|
"@types/uuid": "^8.3.1",
|
|
"@typescript-eslint/eslint-plugin": "~4.23.0",
|
|
"@typescript-eslint/parser": "~4.23.0",
|
|
"babel-loader": "^8.2.2",
|
|
"bip32": "^2.0.6",
|
|
"bip39": "^3.0.4",
|
|
"bitcoinjs-lib": "^5.2.0",
|
|
"eslint": "~7.26.0",
|
|
"eslint-config-prettier": "~8.3.0",
|
|
"eslint-plugin-jest": "~24.3.6",
|
|
"jest": "~26.6.3",
|
|
"node-polyfill-webpack-plugin": "^1.1.2",
|
|
"prettier": "~2.3.0",
|
|
"rimraf": "~3.0.2",
|
|
"ts-jest": "~26.5.6",
|
|
"tsutils": "~3.21.0",
|
|
"typescript": "^4.3.5",
|
|
"uuid": "^8.3.2",
|
|
"webpack": "4.46.0",
|
|
"webpack-cli": "4.3.1"
|
|
},
|
|
"babel": {
|
|
"presets": [
|
|
"@babel/preset-env",
|
|
"@babel/preset-typescript"
|
|
]
|
|
},
|
|
"scripts": {
|
|
"start": "node dist/index.js",
|
|
"clean": "rimraf coverage build tmp dist",
|
|
"build": "tsc -p tsconfig.json",
|
|
"build:watch": "tsc -w -p tsconfig.json",
|
|
"lint": "eslint . --ext .ts,.tsx",
|
|
"test": "jest --coverage",
|
|
"test:watch": "jest --watch",
|
|
"build:purescript": "webpack --config webpack.config.js"
|
|
},
|
|
"author": "Soralit <soralitria@gmail.com>",
|
|
"license": "Apache-2.0",
|
|
"dependencies": {
|
|
"@ngraveio/bc-ur": "https://github.com/BlueWallet/bc-ur",
|
|
"base58check": "^2.0.0",
|
|
"tslib": "^2.3.0"
|
|
}
|
|
}
|