-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
48 lines (48 loc) · 1.46 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
{
"name": "angularx-youtube",
"version": "1.0.0",
"description": "A Youtube Api module for Angular 5 and above",
"keywords": [
"angular 5",
"ng",
"ng 5",
"angular youtube",
"youtube api",
"youtube"
],
"main": "index.js",
"scripts": {
"clean": "rimraf .tmp && rimraf dist",
"transpile": "./node_modules/.bin/ngc",
"package": "rollup -c",
"minify": "./node_modules/uglify-js/bin/uglifyjs dist/bundles/angularx-youtube.umd.js --screw-ie8 --compress --mangle --comments --output dist/bundles/angularx-youtube.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"
},
"license": "MIT",
"homepage": "https://bitbucket.org/EdwardPayton/angularx-youtube",
"bugs": {
"url": "https://bitbucket.org/EdwardPayton/angularx-youtube"
},
"repository": {
"type": "git",
"url": "https://bitbucket.org/EdwardPayton/angularx-youtube.git"
},
"devDependencies": {
"@angular/compiler": "^5.0.0",
"@angular/compiler-cli": "^5.0.0",
"@types/youtube": "0.0.31",
"cpx": "^1.5.0",
"renamer": "^0.6.1",
"rimraf": "^2.6.2",
"rollup": "^0.52.2",
"typescript": "~2.4.2",
"uglify-js": "^3.2.2"
},
"dependencies": {
"@angular/common": "^5.0.0",
"@angular/core": "^5.0.0",
"rxjs": "^5.0.3",
"zone.js": "^0.8.4"
}
}