57 lines
1.9 KiB
JSON
Executable File
57 lines
1.9 KiB
JSON
Executable File
{
|
|
"name": "laravel-echo",
|
|
"version": "1.16.1",
|
|
"description": "Laravel Echo library for beautiful Pusher and Socket.IO integration",
|
|
"keywords": [
|
|
"laravel",
|
|
"pusher",
|
|
"ably"
|
|
],
|
|
"homepage": "https://github.com/laravel/echo",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/laravel/echo"
|
|
},
|
|
"license": "MIT",
|
|
"author": {
|
|
"name": "Taylor Otwell"
|
|
},
|
|
"main": "dist/echo.common.js",
|
|
"module": "dist/echo.js",
|
|
"types": "dist/echo.d.ts",
|
|
"scripts": {
|
|
"build": "npm run compile && npm run declarations",
|
|
"compile": "./node_modules/.bin/rollup -c",
|
|
"declarations": "./node_modules/.bin/tsc --emitDeclarationOnly",
|
|
"lint": "eslint --ext .js,.ts ./src ./tests",
|
|
"prepublish": "npm run build",
|
|
"release": "npm run test && standard-version && git push --follow-tags && npm publish",
|
|
"test": "jest"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/plugin-proposal-decorators": "^7.17.2",
|
|
"@babel/plugin-proposal-export-namespace-from": "^7.16.7",
|
|
"@babel/plugin-proposal-function-sent": "^7.16.7",
|
|
"@babel/plugin-proposal-numeric-separator": "^7.16.7",
|
|
"@babel/plugin-proposal-throw-expressions": "^7.16.7",
|
|
"@babel/plugin-transform-object-assign": "^7.16.7",
|
|
"@babel/preset-env": "^7.16.11",
|
|
"@rollup/plugin-babel": "^5.3.1",
|
|
"@types/jest": "^27.4.1",
|
|
"@types/node": "^18.11.9",
|
|
"@typescript-eslint/eslint-plugin": "^5.14.0",
|
|
"@typescript-eslint/parser": "^5.14.0",
|
|
"eslint": "^8.11.0",
|
|
"jest": "^27.5.1",
|
|
"rollup": "^2.70.1",
|
|
"rollup-plugin-typescript2": "^0.31.2",
|
|
"standard-version": "^9.3.2",
|
|
"ts-jest": "^27.1.3",
|
|
"tslib": "^2.3.1",
|
|
"typescript": "^4.6.2"
|
|
},
|
|
"engines": {
|
|
"node": ">=10"
|
|
}
|
|
}
|