-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 1.09 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
{
"name": "bitcoin-simple-rpc",
"version": "0.0.4",
"description": "",
"repository": "https://github.com/p2pderivatives/bitcoin-simple-rpc",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"lint": "eslint src --ext .ts",
"lint:ci": "eslint --max-warnings=0 --format junit --output-file ./reports/linter/eslint.xml src --ext .ts",
"test": "./scripts/start_node.sh && jest && ./scripts/stop_node.sh",
"build": "tsc",
"prepare": "npm run build"
},
"files": [
"dist/**/*"
],
"keywords": [],
"author": "",
"license": "MIT",
"dependencies": {
"axios": "^0.24.0"
},
"devDependencies": {
"@types/jest": "^26.0.24",
"@types/node": "^12.20.43",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"cfd-js": "github:cryptogarageinc/cfd-js#v0.1.16",
"eslint": "^7.32.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.4.1",
"jest": "^26.6.3",
"jest-junit": "^11.1.0",
"prettier": "^2.5.1",
"ts-jest": "^26.5.6",
"typescript": "^3.9.10"
}
}