|
| 1 | +{ |
| 2 | + "name": "@bitgo/sdk-coin-coredao", |
| 3 | + "version": "1.0.0", |
| 4 | + "description": "BitGo SDK coin library for Coredao", |
| 5 | + "main": "./dist/src/index.js", |
| 6 | + "types": "./dist/src/index.d.ts", |
| 7 | + "scripts": { |
| 8 | + "build": "yarn tsc --build --incremental --verbose .", |
| 9 | + "fmt": "prettier --write .", |
| 10 | + "check-fmt": "prettier --check .", |
| 11 | + "clean": "rm -r ./dist", |
| 12 | + "lint": "eslint --quiet .", |
| 13 | + "prepare": "npm run build", |
| 14 | + "test": "npm run coverage", |
| 15 | + "coverage": "nyc -- npm run unit-test", |
| 16 | + "unit-test": "mocha" |
| 17 | + }, |
| 18 | + "author": "BitGo SDK Team <[email protected]>", |
| 19 | + "license": "MIT", |
| 20 | + "engines": { |
| 21 | + "node": ">=18 <21" |
| 22 | + }, |
| 23 | + "repository": { |
| 24 | + "type": "git", |
| 25 | + "url": "https://github.com/BitGo/BitGoJS.git", |
| 26 | + "directory": "modules/sdk-coin-coredao" |
| 27 | + }, |
| 28 | + "lint-staged": { |
| 29 | + "*.{js,ts}": [ |
| 30 | + "yarn prettier --write", |
| 31 | + "yarn eslint --fix" |
| 32 | + ] |
| 33 | + }, |
| 34 | + "publishConfig": { |
| 35 | + "access": "public" |
| 36 | + }, |
| 37 | + "nyc": { |
| 38 | + "extension": [ |
| 39 | + ".ts" |
| 40 | + ] |
| 41 | + }, |
| 42 | + "dependencies": { |
| 43 | + "@bitgo/abstract-eth": "^22.3.1", |
| 44 | + "@bitgo/sdk-core": "^28.13.1", |
| 45 | + "@bitgo/statics": "^50.6.0", |
| 46 | + "@ethereumjs/common": "^2.6.5" |
| 47 | + }, |
| 48 | + "devDependencies": { |
| 49 | + "@bitgo/sdk-api": "^1.56.3", |
| 50 | + "@bitgo/sdk-test": "^8.0.50" |
| 51 | + } |
| 52 | +} |
0 commit comments