-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.44 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.44 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
{
"name": "verus-tools",
"version": "1.0.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"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": "https://github.com/Monkins1010/verus-tools.git",
"author": "valu",
"license": "MIT",
"dependencies": {
"@bitgo/utxo-lib": "git+https://github.com/VerusCoin/BitGoJS.git#7c754d4a5920198d9fe6827d3e23bd5cf431f264",
"bs58": "^6.0.0",
"verusid-ts-client": "git+https://github.com/VerusCoin/verusid-ts-client.git"
},
"resolutions": {
"verus-typescript-primitives": "https://github.com/monkins1010/verus-typescript-primitives.git#attestandvdxfobj"
},
"devDependencies": {
"@types/bn.js": "5.1.1",
"@types/bs58check": "2.1.0",
"@types/create-hash": "1.2.2",
"@types/jest": "28.1.6",
"@types/node": "18.7.22",
"@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"
}
}