-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·42 lines (42 loc) · 1.18 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
{
"name": "ngc-pagination",
"description": "Simple pagination for Angular v4+",
"scripts": {
"transpile": "ngc",
"package": "rollup -c",
"minify": "uglifyjs dist/bundles/ngc-pagination.umd.js --screw-ie8 --compress --mangle --comments --output dist/bundles/ngc-pagination.umd.min.js",
"build": "npm run transpile && npm run package && npm run minify"
},
"keywords": [
"angular2",
"angular",
"npm",
"package",
"module",
"pagination"
],
"author": "Gustavo Costa - @GustavoCostaW",
"license": "MIT",
"peerDependencies": {
"@angular/core": ">=4.0.0",
"@angular/common": ">=4.0.0",
"@angular/platform-browser": ">=4.0.0",
"core-js": ">=2.4.1"
},
"devDependencies": {
"@angular/compiler": "^4.0.0",
"@angular/compiler-cli": "^4.0.0",
"@angular/core": "^4.0.0",
"@angular/common": "^4.0.0",
"@angular/platform-server": "^4.0.0",
"@angular/platform-browser": "^4.0.0",
"@angular/platform-browser-dynamic": "^4.0.0",
"@angular/forms": "^4.0.0",
"rxjs": "^5.4.2",
"zone.js": "^0.6.23",
"@types/node": "8.0.7",
"rollup": "0.50.0",
"typescript": "2.4.1",
"uglify-js": "3.1.2"
}
}