event-booking-api
Version:
Package for easy access to Event App API
53 lines (52 loc) • 1.33 kB
JSON
{
"name": "event-booking-api",
"version": "1.0.21",
"author": "Liveware",
"scripts": {
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.ts\"",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags",
"new-version": "git pull && npm run build && git commit -m 'update booking api' -a --no-verify && npm version patch && npm publish"
},
"meta": {},
"description": "Package for easy access to Event App API",
"repository": {
"type": "git",
"url": "git+https://github.com/We-Conect/event-app-api.git"
},
"keywords": [
"We-Conect",
"Liveware",
"EventApp",
"Booking"
],
"license": "ISC",
"dependencies": {},
"peerDependencies": {
"react": "^18.2.0"
},
"main": "lib/index",
"react-native": "lib/index",
"types": "lib/index.d.ts",
"source": "src/index",
"directories": {
"test": "test"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"jest": "^29.5.0",
"prettier": "^2.8.7",
"ts-jest": "^29.1.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^5.0.4"
},
"files": [
"lib/**/*"
]
}