bookingjs
Version:
A framework-agnostic JavaScript library for managing rink bookings, availability, and scheduling
74 lines (73 loc) • 2.15 kB
JSON
{
"name": "bookingjs",
"version": "0.1.6",
"description": "A framework-agnostic JavaScript library for managing rink bookings, availability, and scheduling",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"sideEffects": false,
"files": [
"dist/"
],
"scripts": {
"build": "npm run clean && npm run build:rollup && npm run build:types",
"build:rollup": "rollup -c",
"build:types": "tsc",
"clean": "rmdir /s /q dist 2>nul || echo \"dist folder cleaned\"",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test:watch": "npm run test -- --watch",
"test:coverage": "npm run test -- --coverage",
"dev": "rollup -c --watch",
"prepublishOnly": "npm run build && npm run test",
"cli": "node scripts/cli.js",
"commit": "node scripts/commit.js",
"release": "node scripts/build.js"
},
"keywords": [
"booking",
"scheduling",
"rink",
"bowling",
"availability",
"javascript",
"typescript",
"framework-agnostic"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://lovebowlswebsite@helixteamhub.cloud/lovebowlscouk/projects/leaguejs/repositories/git/bookingJS.git"
},
"bugs": {
"url": "https://helixteamhub.cloud/lovebowlscouk/projects/leaguejs/repositories/git/bookingJS/issues"
},
"homepage": "https://helixteamhub.cloud/lovebowlscouk/projects/leaguejs/repositories/git/bookingJS#readme",
"dependencies": {
"uuid": "^11.1.0",
"@js-temporal/polyfill": "^0.4.4"
},
"devDependencies": {
"@babel/core": "^7.23.0",
"@babel/preset-env": "^7.23.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-commonjs": "^25.0.7",
"@types/jest": "^29.5.5",
"@types/uuid": "^9.0.7",
"jest": "^29.7.0",
"rollup": "^4.1.0",
"typescript": "^5.2.2"
},
"engines": {
"node": ">=14.0.0"
}
}