|
| 1 | +{ |
| 2 | + "name": "maintenance-utils", |
| 3 | + "version": "0.0.1", |
| 4 | + "description": "maintenance-utils CLI", |
| 5 | + "private": true, |
| 6 | + "types": "build/types/types.d.ts", |
| 7 | + "bin": { |
| 8 | + "maintenance-utils": "bin/maintenance-utils" |
| 9 | + }, |
| 10 | + "scripts": { |
| 11 | + "clean-build": "rm -rf ./build", |
| 12 | + "compile": "tsc -p .", |
| 13 | + "copy-templates": "copyfiles ./src/templates/* ./build/templates", |
| 14 | + "build": "yarn clean-build && yarn compile && yarn copy-templates", |
| 15 | + "prepublishOnly": "yarn build", |
| 16 | + "format": "eslint \"**/*.{js,jsx,ts,tsx}\" --fix && prettier \"**/*.{js,jsx,ts,tsx,json}\" --write", |
| 17 | + "test": "jest", |
| 18 | + "watch": "jest --watch", |
| 19 | + "snapupdate": "jest --updateSnapshot", |
| 20 | + "coverage": "jest --coverage" |
| 21 | + }, |
| 22 | + "files": [ |
| 23 | + "build", |
| 24 | + "LICENSE", |
| 25 | + "readme.md", |
| 26 | + "docs", |
| 27 | + "bin" |
| 28 | + ], |
| 29 | + "license": "MIT", |
| 30 | + "dependencies": { |
| 31 | + "@buildwithsygma/sygma-contracts": "^2.3.0", |
| 32 | + "@polkadot/api": "^10.9.1", |
| 33 | + "@polkadot/keyring": "^12.3.2", |
| 34 | + "gluegun": "^5.1.2" |
| 35 | + }, |
| 36 | + "devDependencies": { |
| 37 | + "@buildwithsygma/sygma-sdk-core": "^2.1.0", |
| 38 | + "@chainsafe/eslint-config": "^2.0.0", |
| 39 | + "@polkadot/types": "^10.9.1", |
| 40 | + "@rushstack/eslint-patch": "^1.3.2", |
| 41 | + "@types/jest": "^26.0.20", |
| 42 | + "@types/node": "^12.7.11", |
| 43 | + "@typescript-eslint/eslint-plugin": "^4.17.0", |
| 44 | + "@typescript-eslint/parser": "^4.17.0", |
| 45 | + "copyfiles": "^2.4.1", |
| 46 | + "eslint": "^7.22.0", |
| 47 | + "eslint-config-prettier": "^8.1.0", |
| 48 | + "eslint-plugin-prettier": "^3.3.1", |
| 49 | + "ethers": "^5", |
| 50 | + "jest": "^26.6.3", |
| 51 | + "prettier": "^2.2.1", |
| 52 | + "pretty-quick": "^3.1.0", |
| 53 | + "ts-jest": "^26.5.3", |
| 54 | + "ts-node": "^10.9.1", |
| 55 | + "typescript": "^5.1.6" |
| 56 | + }, |
| 57 | + "jest": { |
| 58 | + "preset": "ts-jest", |
| 59 | + "testEnvironment": "node" |
| 60 | + }, |
| 61 | + "prettier": { |
| 62 | + "semi": false, |
| 63 | + "singleQuote": true |
| 64 | + } |
| 65 | +} |
0 commit comments