chore(docs): Update README docs for more clarity

chore(packagejson): clean up and standardize data inside package json - author taken from MIT license details
chore(spacing): move tsconfig json to follow codebase standard indentation setup
This commit is contained in:
Andre Neves
2019-09-08 13:37:07 -04:00
parent 143949bab4
commit fc2721e3e7
4 changed files with 148 additions and 120 deletions

View File

@@ -1,13 +1,17 @@
{
"name": "mempool-backend",
"version": "1.0.0",
"description": "Bitcoin mempool visualizer",
"description": "Bitcoin Mempool Visualizer",
"main": "index.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
"build": "tsc",
"start": "npm run build && node dist/index.js"
},
"author": "",
"license": "ISC",
"author": {
"name": "Simon Lindh",
"url": "https://github.com/mempool-space/mempool.space"
},
"license": "MIT",
"dependencies": {
"bitcoin": "^3.0.1",
"compression": "^1.7.3",

View File

@@ -1,20 +1,20 @@
{
"compilerOptions": {
"module": "commonjs",
"target": "es2015",
"strict": true,
"noImplicitAny": false,
"sourceMap": false,
"outDir": "dist",
"moduleResolution": "node",
"typeRoots": [
"node_modules/@types"
]
},
"include": [
"src/**/*.ts",
],
"exclude": [
"dist/**"
"compilerOptions": {
"module": "commonjs",
"target": "es2015",
"strict": true,
"noImplicitAny": false,
"sourceMap": false,
"outDir": "dist",
"moduleResolution": "node",
"typeRoots": [
"node_modules/@types"
]
},
"include": [
"src/**/*.ts"
],
"exclude": [
"dist/**"
]
}