forked from orizens/ngx-infinite-scroll
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.38 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
{
"name": "angular2-infinite-scroll",
"version": "0.2.3",
"description": "An infinite scroll directive for angular2",
"main": "angular2-infinite-scroll.js",
"typings": "./angular2-infinite-scroll.d.ts",
"repository": "orizens/angular2-infinite-scroll",
"scripts": {
"build:test": "tsc --project ./src",
"clean": "rimraf src/*.js && rimraf src/*.d.ts && rimraf ./*scroll.js && rimraf ./*scroll.d.ts",
"clean:node": "rimraf node_modules",
"dev": "npm run watch & karma start karma.conf.js --bdd",
"lite": "lite-server",
"postversion": "git push origin master",
"prepublish": "node ./node_modules/@angular/compiler-cli/src/main.js && node make.js",
"pretest": "npm run clean && npm run build:test",
"preversion": "npm run clean && npm run prepublish && npm test",
"setup": "npm run typings -- install",
"start": "npm run build && npm run lite",
"test": "karma start karma.conf.js",
"typings": "typings",
"version": "git add ./",
"watch": "tsc --project ./src --watch"
},
"keywords": [
"angular2",
"scroll",
"infinite"
],
"author": "Oren Farhi",
"license": "MIT",
"devDependencies": {
"@angular/common": "2.0.1",
"@angular/compiler": "2.0.1",
"@angular/compiler-cli": "^0.6.2",
"@angular/core": "2.0.1",
"@angular/platform-browser": "2.0.1",
"@angular/platform-browser-dynamic": "2.0.1",
"@types/core-js": "^0.9.32",
"@types/jasmine": "^2.2.33",
"@types/node": "^6.0.38",
"autodts": "0.0.6",
"awesome-typescript-loader": "^2.2.4",
"es6-promise": "^3.0.2",
"es6-shim": "^0.33.3",
"istanbul-instrumenter-loader": "^1.0.0",
"jasmine-core": "2.4.1",
"karma": "^0.13.22",
"karma-chrome-launcher": "^1.0.1",
"karma-cli": "^1.0.0",
"karma-jasmine": "^1.0.2",
"karma-mocha-reporter": "2.0.4",
"karma-phantomjs-launcher": "1.0.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.8.0",
"lite-server": "2.2.0",
"path": "^0.12.7",
"phantomjs-prebuilt": "^2.1.7",
"reflect-metadata": "0.1.2",
"rimraf": "2.5.2",
"rxjs": "5.0.0-beta.12",
"source-map-loader": "^0.1.5",
"systemjs": "0.19.31",
"systemjs-builder": "^0.15.16",
"ts-helpers": "^1.1.1",
"tslint": "^3.15.1",
"tslint-loader": "^2.1.5",
"typescript": "2.0.3",
"typings": "1.2.0",
"webpack": "2.1.0-beta.21",
"zone.js": "^0.6.17"
}
}