-
Notifications
You must be signed in to change notification settings - Fork 183
/
package.json
56 lines (56 loc) · 1.88 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"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"
}
}