{ "name": "rickety", "version": "4.1.0", "description": "minimal typescript rpc framework", "author": "g-harel", "license": "MIT", "main": "index.js", "types": "index.d.ts", "scripts": { "test": "jest", "prepack": "npm run build", "postpublish": "npm run clean", "build": "npm run clean && tsc", "clean": "trash '**/*.js' '**/*.js.map' '**/*.d.ts' '!**/node_modules/**/*'", "fmt": "prettier --list-different --write --ignore-path .gitignore '**/*.{js,ts}'" }, "peerDependencies": { "@types/express": "4.*.*" }, "devDependencies": { "@types/express": "^4.16.0", "@types/jest": "^23.3.5", "@types/request": "^2.48.1", "@types/supertest": "^2.0.6", "axios": "^0.18.0", "express": "^4.16.3", "jest": "^23.6.0", "prettier": "^1.14.2", "request": "^2.88.0", "supertest": "^3.3.0", "trash-cli": "^1.4.0", "ts-jest": "^23.10.3", "typescript": "^3.1.3" }, "homepage": "https://github.com/g-harel/rickety#readme", "repository": { "type": "git", "url": "git+https://github.com/g-harel/rickety" }, "bugs": { "url": "https://github.com/g-harel/rickety/issues" }, "keywords": [ "typescript", "ts", "rpc" ], "jest": { "moduleFileExtensions": [ "js", "ts" ], "transform": { "^.+\\.ts$": "ts-jest" }, "testMatch": [ "**/test/**" ] }, "prettier": { "tabWidth": 4, "printWidth": 85, "trailingComma": "all", "bracketSpacing": false, "arrowParens": "always" } }