-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (59 loc) · 1.65 KB
/
package.json
File metadata and controls
61 lines (59 loc) · 1.65 KB
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
{
"name": "@angularclass/request-idle-callback",
"version": "1.0.6",
"author": "Partick Stapleton <patrick@angularclass.com>",
"description": "requestIdleCallback for Angular 2",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"scripts": {
"typings-install": "typings install",
"watch": "tsc --watch",
"prebuild": "rimraf dist",
"build": "tsc",
"lint": "tslint 'src/**/*.ts'",
"test": "",
"start": "npm run build",
"prepublish": "npm run test && npm run build"
},
"devDependencies": {
"@angular/http": "2.0.0-rc.2",
"@angular/common": "2.0.0-rc.2",
"@angular/compiler": "2.0.0-rc.2",
"@angular/core": "2.0.0-rc.2",
"@angular/platform-browser": "2.0.0-rc.2",
"@angular/platform-browser-dynamic": "2.0.0-rc.2",
"@angular/platform-server": "2.0.0-rc.2",
"@angular/router": "2.0.0-rc.2",
"@angular/router-deprecated": "2.0.0-rc.2",
"core-js": "^2.4.0",
"rxjs": "5.0.0-beta.6",
"zone.js": "~0.6.12",
"rimraf": "^2.5.2",
"tslint": "^3.5.0",
"ts-helpers": "1.1.1",
"typescript": "^1.9.0-dev.20160409",
"typings": "~1.0.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AngularClass/request-idle-callback.git"
},
"keywords": [
"request idle callback",
"angular2",
"AngularClass",
"Angular Class",
"angular2modules",
"requestIdleCallback",
"Angular 2 requestIdleCallback"
],
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/AngularClass/request-idle-callback/issues"
},
"homepage": "https://github.com/AngularClass/request-idle-callback#readme"
}