-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
55 lines (55 loc) · 1.72 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
45
46
47
48
49
50
51
52
53
54
55
{
"name": "verusid-ts-client",
"version": "0.1.0",
"description": "TypeScript lite client to interface with VerusID functions",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"format": "prettier --write \"src/**/*.(js|ts)\"",
"lint": "eslint src --ext .js,.ts",
"lint:fix": "eslint src --fix --ext .js,.ts",
"test": "jest --config jest.config.js",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/VerusCoin/verusid-ts-client.git"
},
"keywords": [
"boilerplate",
"typescript"
],
"author": "Michael Filip Toutonghi",
"license": "MIT",
"bugs": {
"url": "https://github.com/VerusCoin/verusid-ts-client.git/issues"
},
"homepage": "https://github.com/VerusCoin/verusid-ts-client.git#readme",
"devDependencies": {
"@types/bn.js": "5.1.5",
"@types/jest": "28.1.6",
"@typescript-eslint/eslint-plugin": "5.30.7",
"@typescript-eslint/parser": "5.30.7",
"eslint": "8.20.0",
"eslint-plugin-jest": "26.6.0",
"jest": "28.1.3",
"prettier": "2.7.1",
"ts-jest": "28.0.7",
"typescript": "4.7.4"
},
"files": [
"lib/**/*"
],
"dependencies": {
"@bitgo/utxo-lib": "git+https://github.com/VerusCoin/BitGoJS.git#3c6efada45b6a4fc2a1065951c307016dca7f953",
"axios": "1.7.4",
"bignumber.js": "9.1.0",
"bn.js": "5.2.1",
"verus-typescript-primitives": "git+https://github.com/VerusCoin/verus-typescript-primitives.git",
"verusd-rpc-ts-client": "git+https://github.com/VerusCoin/verusd-rpc-ts-client.git"
}
}