mirror of
https://github.com/fullstack-cash/wallet.fullstack.cash.git
synced 2026-09-21 16:52:05 -07:00
53 lines
1.3 KiB
JSON
53 lines
1.3 KiB
JSON
{
|
|
"name": "bch-wallet-starter",
|
|
"description": "A BCH web wallet starter for Gatsby.",
|
|
"version": "1.0.0",
|
|
"license": "MIT",
|
|
"author": "Chris Troutner <chris.troutner@gmail.com>",
|
|
"contributors": [
|
|
"Daniel Gonzalez <danielhumgon@gmail.com>",
|
|
"Andre Cabrera <andrecabrera@protonmail.ch>"
|
|
],
|
|
"scripts": {
|
|
"build": "gatsby build",
|
|
"build:ipfs": "gatsby build --prefix-paths",
|
|
"develop": "gatsby develop",
|
|
"lint": "standard --env mocha --fix",
|
|
"start": "npm run develop",
|
|
"serve": "gatsby serve",
|
|
"clean": "gatsby clean",
|
|
"test": "npm run lint"
|
|
},
|
|
"dependencies": {
|
|
"bch-wallet-plugin-postoffice": "^1.0.7",
|
|
"gatsby": "^2.23.7",
|
|
"gatsby-ipfs-web-wallet": "^1.8.0",
|
|
"gatsby-plugin-compile-es6-packages": "^2.1.0"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/Permissionless-Software-Foundation/bch-wallet-starter"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/Permissionless-Software-Foundation/bch-wallet-starter/issues"
|
|
},
|
|
"devDependencies": {
|
|
"husky": "^4.2.5",
|
|
"semantic-release": "^17.1.1",
|
|
"standard": "^14.3.4"
|
|
},
|
|
"release": {
|
|
"publish": [
|
|
{
|
|
"path": "@semantic-release/npm",
|
|
"npmPublish": false
|
|
}
|
|
]
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "npm run lint"
|
|
}
|
|
}
|
|
}
|