-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.02 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "opreturn_parser",
"version": "1.0.0",
"description": "An OP_RETURN data parser and search for Bitcoin",
"author": "Daniel Limia Aspas <limiaspasdaniel@gmail.com>",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"homepage": "https://github.com/limiaspasdaniel/bitcoind_bridge#readme",
"repository": "https://github.com/limiaspasdaniel/bitcoind_bridge",
"license": "MIT",
"keywords": [
"bitcoind",
"OP_RETURN",
"bitcoin"
],
"scripts": {
"dev": "npx ts-node --files src/index.ts",
"build": "tsc -p tsconfig.json",
"fix:prettier": "prettier \"src/**/*.ts\" --write",
"fix:tslint": "tslint --fix --project .",
"test": "npx run jest"
},
"scripts-info": {
"dev": "Run the application using ts-node",
"build": "Clean and rebuild the project",
"fix:prettier": "Try to automatically fix any prettier linting problems",
"fix:tslint": "Try to automatically fix any tslint linting problems",
"test": "Run Jest tests"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"engines": {
"node": ">=10.14"
},
"dependencies": {
"axios": "0.19.0",
"better-queue": "3.8.10",
"bitcoin-core": "3.0.0",
"bitcoinjs-lib": "5.1.6",
"bunyan": "1.8.12",
"express": "4.17.1",
"pg": "7.12.1",
"pg-hstore": "2.3.3",
"sequelize": "5.19.6"
},
"devDependencies": {
"@bitjson/npm-scripts-info": "1.0.0",
"@bitjson/typedoc": "0.15.0-0",
"@types/axios": "0.14.0",
"@types/better-queue": "3.8.1",
"@types/bluebird": "3.5.28",
"@types/bunyan": "1.8.6",
"@types/express": "4.17.1",
"@types/jest": "24.0.19",
"@types/node": "12.7.12",
"@types/validator": "10.11.3",
"husky": "3.0.9",
"jest": "24.9.0",
"lint-staged": "^10.0.0-0",
"npm-run-all": "4.1.5",
"nyc": "14.1.1",
"prettier": "1.18.2",
"ts-jest": "24.1.0",
"ts-node": "8.4.1",
"tslint": "5.18.0",
"tslint-config-prettier": "1.18.0",
"tslint-immutable": "6.0.1",
"typescript": "3.5.3"
}
}