-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.32 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
{
"name": "ngx-twilio-video",
"version": "0.0.1",
"description": "Twilio Video Angular API",
"main": "ngx-twilio-video.umd.js",
"jsnext:main": "ngx-twilio-video.esm.js",
"module": "ngx-twilio-video.esm.js",
"types": "ngx-twilio-video.d.ts",
"scripts": {
"copy": "node tools/copy-package.js && node tools/cleanup.js",
"postbundle": "node tools/removecode.js",
"build": "npm run bundle && npm run copy",
"bundle": "rimraf dist && rollup -c rollup.config.umd.js && rollup -c rollup.config.esm.js && tsc && ngc",
"publish": "cd ./dist && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kmanaseryan/ngx-twilio-video"
},
"author": {
"name": "Karlen",
"email": "kmanaseryan@gmail.com"
},
"license": "ISC",
"dependencies": {
"@angular/common": "^5.0.0",
"@angular/core": "^5.0.0",
"rxjs": "^5.5.2",
"twilio-video": "^1.6.0",
"zone.js": "^0.8.18"
},
"devDependencies": {
"@angular/compiler": "^5.0.0",
"@angular/compiler-cli": "^5.0.0",
"del": "^3.0.0",
"node-sass": "^4.5.3",
"rollup": "^0.50.0",
"rollup-plugin-angular": "^0.5.3",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-typescript2": "^0.8.0",
"typescript": "^2.6.1",
"uglify-js": "^3.1.6"
}
}