-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
61 lines (61 loc) · 1.7 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
{
"name": "ng2-cable",
"version": "2.0.7",
"description": "Easily integrate Rails' ActionCable into your Angular2/4/ionic2/3 application.",
"main": "index.js",
"scripts": {
"clean": "rimraf .tmp && rimraf dist",
"transpile": "ngc",
"package": "rollup -c",
"minify": "./node_modules/uglify-js/bin/uglifyjs dist/bundles/ng2-cable.umd.js --screw-ie8 --compress --mangle --comments --output dist/bundles/npm-module-seed.umd.min.js",
"copy": "cpx './package-dist.json' dist && renamer --find 'package-dist.json' --replace 'package.json' ./dist/*",
"build": "npm run clean && npm run transpile && npm run package && npm run minify && npm run copy"
},
"devDependencies": {
"@angular/compiler": "^2.4.4",
"@angular/compiler-cli": "^2.4.4",
"cpx": "^1.5.0",
"renamer": "^0.6.1",
"rimraf": "^2.5.4",
"rollup": "^0.41.4",
"typescript": "~2.0.0",
"uglify-js": "^2.7.5"
},
"dependencies": {
"@angular/common": "^2.4.4",
"@angular/core": "^2.4.4",
"@types/actioncable": "0.0.2",
"actioncable": "5.1.2",
"rxjs": "^5.0.3",
"zone.js": "^0.7.6"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/viktor-shmigol/ng2-cable.git"
},
"keywords": [
"cable",
"ActionCable",
"Angular2-cable",
"Angular4-cable",
"ng2-cable",
"ng2Cable",
"Rails",
"rails",
"Cable",
"Angular2",
"Angular4",
"ionic2",
"ionic3",
"ionic2-cable",
"ionic3-cable",
"Rails5",
"Action Cable"
],
"author": "Victor Shmigol",
"license": "ISC",
"bugs": {
"url": "https://github.com/viktor-shmigol/ng2-cable/issues"
},
"homepage": "https://github.com/viktor-shmigol/ng2-cable#readme"
}