-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.17 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
{
"name": "ng-infinitescroll",
"version": "1.0.12",
"description": "infinitescroll directive for angular",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/yairtawil/ng-infinitescroll.git"
},
"scripts": {
"build": "rimraf dist && ngc",
"build:gh-pages": "npm run build --prefix demo && copyfiles demo/dist/**/* . --up 2 && node scripts/gh-pages.js",
"prepublishOnly": "npm version patch && npm run build",
"preversion": "git push --tags",
"test": "echo \"Error: no test specified\""
},
"keywords": [
"ng-infinitescroll",
"infinitescroll",
"angular",
"ng"
],
"author": "YairTawil",
"license": "MIT",
"peerDependencies": {
"@angular/common": "^5.0.3",
"@angular/core": "^5.0.3",
"rxjs": "^5.5.2"
},
"devDependencies": {
"@angular/common": "^5.0.3",
"@angular/compiler": "^5.0.3",
"@angular/compiler-cli": "^5.0.3",
"@angular/core": "^5.0.3",
"codelyzer": "^4.0.1",
"copyfiles": "^1.2.0",
"rimraf": "^2.6.2",
"rxjs": "^5.5.2",
"tslint": "^5.8.0",
"typescript": "^2.4.2"
},
"files": [
"dist/**/*"
]
}