UNPKG

2.24 kBJSONView Raw
1{
2 "name": "ngx-pagination",
3 "version": "5.1.1",
4 "description": "Pagination for Angular",
5 "module": "dist/ngx-pagination.js",
6 "main": "dist/ngx-pagination.umd.js",
7 "types": "dist/ngx-pagination.d.ts",
8 "scripts": {
9 "clean": "rm -rf build && rm -rf dist",
10 "ngc": "ngc -p config/tsconfig.build.json",
11 "rollup:fesm": "rollup build/ngx-pagination.js -o dist/ngx-pagination.js -f es",
12 "rollup:umd": "rollup build/ngx-pagination.js -o dist/ngx-pagination.umd.js --f umd --name ngxPagination",
13 "copy-metadata": "find build/* -not -name '*.js' -exec cp -t dist {} +",
14 "build": "npm run clean && npm run ngc && npm run rollup:fesm && npm run rollup:umd && npm run copy-metadata",
15 "test": "karma start config/karma.conf.js",
16 "test:watch": "npm run test -- --auto-watch --no-single-run",
17 "publish-lib": "npm run test && npm run build"
18 },
19 "files": [
20 "dist"
21 ],
22 "keywords": [
23 "angular",
24 "angular2",
25 "pagination"
26 ],
27 "repository": {
28 "type": "git",
29 "url": "https://github.com/michaelbromley/ngx-pagination"
30 },
31 "bugs": {
32 "url": "https://github.com/michaelbromley/ngx-pagination/issues"
33 },
34 "author": "Michael Bromley <michael@michaelbromley.co.uk>",
35 "license": "MIT",
36 "devDependencies": {
37 "@angular/common": "^8.0.0",
38 "@angular/compiler": "^8.0.0",
39 "@angular/compiler-cli": "^8.0.0",
40 "@angular/core": "^8.0.0",
41 "@angular/platform-browser": "^8.0.0",
42 "@angular/platform-browser-dynamic": "^8.0.0",
43 "@types/jasmine": "2.5.41",
44 "@types/node": "^6.0.45",
45 "jasmine-core": "^2.4.1",
46 "json-loader": "^0.5.4",
47 "karma": "1.7.1",
48 "karma-chrome-launcher": "2.0.0",
49 "karma-jasmine": "1.1.0",
50 "karma-mocha-reporter": "^2.2.0",
51 "karma-phantomjs-launcher": "1.0.4",
52 "karma-webpack": "^2.0.3",
53 "marked": "^0.3.6",
54 "phantomjs-prebuilt": "^2.1.7",
55 "reflect-metadata": "^0.1.13",
56 "rollup": "^0.50.0",
57 "rxjs": "^6.5.2",
58 "ts-loader": "^6.0.2",
59 "typescript": "3.4.5",
60 "webpack": "^4.33.0",
61 "zone.js": "^0.9.1"
62 },
63 "peerDependencies": {
64 "@angular/core": ">=5.0.0",
65 "@angular/common": ">=5.0.0"
66 }
67}