-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.17 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
41
42
43
44
{
"name": "blockstream-js-client",
"version": "1.0.1",
"description": "The implementation of the Blockstream Satellite API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"homepage": "https://github.com/obbap1/blockstream-js-client",
"keywords": [
"blockchain",
"blockstream",
"bitcoin",
"crypto"
],
"repository": {
"type": "git",
"directory": "https://github.com/obbap1/blockstream-js-client"
},
"scripts": {
"test": "jest --passWithNoTests",
"build": "rm -r dist && tsc",
"prepare": "npm run build",
"lint": "tslint -p tsconfig.json",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"postversion": "git push && git push --tags",
"version": "npm run format && git add -A src"
},
"author": "Obba Paschal",
"license": "ISC",
"dependencies": {
"@types/node": "^14.0.13",
"axios": "^0.19.2"
},
"devDependencies": {
"@types/jest": "^26.0.3",
"eslint": "^7.2.0",
"jest": "^26.1.0",
"prettier": "^2.0.5",
"ts-jest": "^26.1.1",
"typescript": "^3.9.5",
"tslint": "^6.1.2"
}
}