forked from orizens/ngx-infinite-scroll
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.59 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "ngx-infinite-scroll",
"version": "0.8.3",
"description": "An infinite scroll directive for Angular compatible with AoT compilation and Tree shaking",
"main": "./bundles/ngx-infinite-scroll.umd.js",
"module": "./modules/ngx-infinite-scroll.es5.js",
"es2015": "./modules/ngx-infinite-scroll.js",
"scripts": {
"build": "node build.js",
"test": "karma start",
"test:watch": "karma start --single-run=false",
"pack-lib": "npm pack ./dist",
"publish-lib": "npm publish ./dist",
"publish:beta": "npm publish --tag next ./dist",
"compodoc": "compodoc -p tsconfig.json",
"compodoc-serve": "compodoc -s",
"transpile": "ngc -p ./tsconfig.json",
"serve:prod": "npm run build && lite-server -c ./example/bs-config.json",
"postinstall": "opencollective postinstall"
},
"typings": "./ngx-infinite-scroll.d.ts",
"author": "Oren Farhi (orizens.com)",
"repository": {
"type": "git",
"url": "https://github.com/orizens/ngx-infinite-scroll.git"
},
"bugs": {
"url": "https://github.com/orizens/ngx-infinite-scroll/issues"
},
"homepage": "https://github.com/orizens/ngx-infinite-scroll",
"keywords": [
"angular",
"javascript",
"typescript"
],
"license": "MIT",
"peerDependencies": {
"@angular/common": ">= 4.0.0",
"@angular/core": ">= 4.0.0"
},
"devDependencies": {
"@angular/common": "^4.0.0",
"@angular/compiler": "^4.0.0",
"@angular/compiler-cli": "^4.0.0",
"@angular/core": "^4.0.0",
"@angular/platform-browser": "^4.0.0",
"@angular/platform-browser-dynamic": "^4.0.0",
"@angular/platform-server": "^4.0.0",
"@angular/animations": "^4.0.0",
"@types/jasmine": "2.5.46",
"@types/node": "7.0.10",
"codelyzer": "3.0.0-beta.4",
"compodoc": "0.0.41",
"core-js": "2.4.1",
"jasmine-core": "2.5.2",
"karma": "1.5.0",
"karma-chrome-launcher": "2.0.0",
"karma-jasmine": "1.1.0",
"karma-sourcemap-loader": "0.3.7",
"karma-spec-reporter": "0.0.30",
"karma-webpack": "2.0.3",
"reflect-metadata": "0.1.10",
"rollup": "0.41.6",
"rxjs": "5.5.2",
"ts-helpers": "1.1.2",
"ts-loader": "2.0.3",
"tslint": "4.5.1",
"typescript": "^2.1.5",
"webpack": "2.3.1",
"zone.js": "0.8.5",
"shelljs": "0.7.7",
"chalk": "1.1.3",
"uglify-js": "2.8.15",
"sorcery": "0.10.0",
"yargs": "7.0.2"
},
"dependencies": {
"opencollective": "^1.0.3"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/ngx-infinite-scroll",
"logo": "https://opencollective.com/ngx-infinite-scroll/logo.txt"
}
}