forked from michaelbromley/ngx-pagination
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.02 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "ng2-pagination",
"version": "0.3.5",
"description": "Pagination for Angular 2",
"main": "index.js",
"scripts": {
"typings:install": "node node_modules/typings/dist/bin install",
"build:system": "node node_modules/typescript/bin/tsc -p tsconfig.system.json",
"build:cjs": "node node_modules/typescript/bin/tsc",
"build": "npm run build:cjs && npm run build:system",
"test": "karma start karma.conf.js",
"test:watch": "npm run test -- --auto-watch --no-single-run",
"demo:watch": "webpack --progress --colors --watch",
"demo:dist": "webpack --progress --colors --dist",
"publish-lib": "npm run build && npm run demo:dist"
},
"files": [
"dist",
"index.js",
"index.d.ts"
],
"keywords": [
"angular2",
"pagination"
],
"repository": {
"type": "git",
"url": "https://github.com/michaelbromley/ng2-pagination"
},
"bugs": {
"url": "https://github.com/michaelbromley/ng2-pagination/issues"
},
"author": "Michael Bromley <[email protected]>",
"license": "MIT",
"devDependencies": {
"@angular/common": "2.0.0-rc.4",
"@angular/compiler": "2.0.0-rc.4",
"@angular/core": "2.0.0-rc.4",
"@angular/platform-browser": "2.0.0-rc.4",
"@angular/platform-browser-dynamic": "2.0.0-rc.4",
"bulma": "^0.0.14",
"core-js": "^2.4.0",
"css-loader": "^0.23.1",
"es6-promise": "^3.0.2",
"es6-shim": "^0.35.0",
"highlight.js": "^9.1.0",
"html-loader": "^0.4.3",
"jasmine-core": "^2.4.1",
"karma": "^0.13.15",
"karma-chrome-launcher": "^0.2.2",
"karma-jasmine": "^0.3.6",
"karma-phantomjs-launcher": "^1.0.0",
"karma-webpack": "^1.8.0",
"node-sass": "^3.6.0",
"phantomjs-prebuilt": "^2.1.7",
"raw-loader": "^0.5.1",
"reflect-metadata": "0.1.2",
"rxjs": "5.0.0-beta.6",
"sass-loader": "^3.1.2",
"style-loader": "^0.13.1",
"ts-loader": "^0.7.2",
"typescript": "^1.8.0",
"typings": "^1.0.4",
"webpack": "^1.12.9",
"zone.js": "0.6.12"
},
"dependencies": {}
}