-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.12 KB
/
package.json
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
{
"name": "bitcoin-lib",
"version": "1.0.0",
"description": "A simple bitcoin library written in JavaScript.",
"main": "ts_src/index.js",
"types": "./src/index.d.ts",
"scripts": {
"format": "prettier --write \\\"ts_src/**/*.ts\\\" \\\"__tests__/**/*.ts\\\"",
"lint": "eslint \"{src,__test__}/**/*.ts\" --fix",
"build": "tsc -p ./tsconfig.json",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CryptoLabSite/bitcoin-lib.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/CryptoLabSite/bitcoin-lib/issues"
},
"homepage": "https://github.com/CryptoLabSite/bitcoin-lib#readme",
"devDependencies": {
"@jest/globals": "^29.6.4",
"@types/jest": "^29.5.4",
"jest": "^29.6.4",
"ts-jest": "^29.1.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.3.2",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.0.1"
},
"dependencies": {
"axios": "^1.5.0",
"smart-buffer": "^4.2.0"
}
}