forked from GustavoCostaW/ngc-float-button
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·52 lines (52 loc) · 1.51 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
{
"name": "ngc-float-button",
"version": "0.0.1",
"description": "Google Material Float Button - Implementation for Angular v4+",
"scripts": {
"postinstall": "npm run clean",
"clean": "pwd && sudo mkdir ../temp && pwd && sudo mv * ../temp && pwd && sudo mv ../temp/dist/* . && pwd && sudo rm -fr ../temp",
"prepare": "npm run build",
"transpile": "ngc",
"package": "rollup -c",
"minify": "uglifyjs dist/bundles/ngc-float-button.umd.js --screw-ie8 --compress --mangle --comments --output dist/bundles/ngc-float-button.umd.min.js",
"build": "npm run transpile && npm run package && npm run minify"
},
"files": [
"/*"
],
"keywords": [
"angular2",
"angular",
"npm",
"package",
"module",
"float button",
"float",
"button"
],
"author": "Gustavo Costa - @GustavoCostaW",
"license": "MIT",
"peerDependencies": {
},
"devDependencies": {
"@angular/animations": "^8.2.6",
"@angular/common": "^8.2.6",
"@angular/compiler": "^8.2.6",
"@angular/compiler-cli": "^8.2.6",
"@angular/core": "^8.2.6",
"@angular/material": "^8.2.0",
"@angular/cdk": "^8.2.0",
"@angular/elements": "^8.2.6",
"@angular/forms": "^8.2.6",
"@angular/platform-browser": "^8.2.6",
"@angular/platform-browser-dynamic": "^8.2.6",
"@angular/router": "^8.2.6",
"@types/node": "^10.14.17",
"core-js": "^2.4.1",
"rollup": "^0.50.0",
"rxjs": "^6.5.3",
"typescript": "^3.5.3",
"uglify-js": "^3.3.9",
"zone.js": "^0.9.1"
}
}