-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
77 lines (77 loc) · 2.61 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "angular-laravel-echo",
"version": "2.1.0",
"description": "A Angular service for Laravel Echo",
"main": "./bundles/angular-laravel-echo.umd.js",
"module": "./angular-laravel-echo.es5.js",
"es2015": "./angular-laravel-echo.js",
"typings": "./angular-laravel-echo.d.ts",
"author": "Mark van Beek <[email protected]> (https://appelit.com)",
"license": "MIT",
"keywords": [
"angular",
"laravel",
"echo",
"broadcasting",
"pusher",
"socket.io"
],
"repository": {
"type": "git",
"url": "git+https://github.com/chancezeus/angular-laravel-echo.git"
},
"homepage": "https://github.com/chancezeus/angular-laravel-echo",
"bugs": {
"url": "https://github.com/chancezeus/angular-laravel-echo/issues"
},
"engines": {
"node": ">= 6.9.0",
"npm": ">= 3.0.0"
},
"scripts": {
"clean": "rimraf out-tsc dist/*",
"prebuild": "npm run clean",
"build": "node build.js",
"doc": "npm run doc:dist && npm run doc:pages",
"doc:dist": "typedoc --out ./dist/docs --mode file --includeDeclarations --excludeExternals --excludePrivate --excludeProtected --module es2015 --target es5 --name \"Angular Laravel Echo\" --hideGenerator ./src/lib",
"doc:pages": "typedoc --out ../gh-pages --mode file --includeDeclarations --excludeExternals --excludePrivate --excludeProtected --module es2015 --target es5 --name \"Angular Laravel Echo\" --hideGenerator ./src/lib --disableOutputCheck",
"lint": "tslint --project tslint.json ./src/**/*.ts",
"release": "npm run lint && standard-version && npm run build && npm run doc"
},
"devDependencies": {
"@angular/common": ">=6.0.0",
"@angular/compiler": ">=6.0.0",
"@angular/compiler-cli": ">=6.0.0",
"@angular/core": ">=6.0.0",
"@types/core-js": "^2.5.0",
"@types/pusher-js": "^4.2.0",
"@types/socket.io-client": "^1.4.32",
"camelcase": "^5.0.0",
"core-js": "^2.6.0",
"glob": "^7.1.3",
"laravel-echo": "^1.5.1",
"pusher-js": "^4.3.1",
"rimraf": "^2.6.1",
"rollup": "^0.67.4",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-sourcemaps": "^0.4.1",
"rollup-plugin-uglify": "^6.0.0",
"rxjs": "^6.3.3",
"socket.io-client": "^2.2.0",
"standard-version": "^4.4.0",
"systemjs": "^2.1.1",
"tslint": "^5.11.0",
"typedoc": "^0.11.1",
"typescript": ">=2.7.2 <2.10.0",
"zone.js": "^0.8.26"
},
"peerDependencies": {
"@angular/common": ">=6.0.0",
"@angular/core": ">=6.0.0",
"laravel-echo": "^1.5.1",
"pusher-js": "^4.3.1",
"rxjs": "^6.0.0",
"socket.io-client": "^2.2.0"
}
}