This repository has been archived by the owner on Feb 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
58 lines (58 loc) · 1.62 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
{
"name": "@angularclass/bootloader",
"version": "1.0.1",
"description": "Angular 2 Bootloader for async script tag and hmr support via @AngularClass",
"main": "dist/index.js",
"module": "esm/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist",
"esm"
],
"scripts": {
"watch": "tsc --watch",
"prebuild": "rimraf dist",
"build": "npm run build:es5 && npm run build:esm",
"build:es5": "ngc -p tsconfig.es5.json",
"prebuild:esm": "rimraf esm",
"build:esm": "ngc -p tsconfig.esm.json",
"test": "",
"start": "npm run build:es5",
"prepublish": "npm run test && npm run build:es5"
},
"dependencies": {},
"devDependencies": {
"@angular/common": "2.2.3",
"@angular/compiler": "2.2.3",
"@angular/compiler-cli": "2.2.3",
"@angular/core": "2.2.3",
"@angular/platform-browser": "2.2.3",
"@angular/platform-browser-dynamic": "^2.2.3",
"@angular/router": "3.2.3",
"rimraf": "^2.5.4",
"rxjs": "5.0.0-beta.12",
"typescript": "~2.0.10",
"zone.js": "~0.6.26"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AngularClass/angular2-bootloader.git"
},
"author": "PatrickJS <[email protected]>",
"license": "Apache-2.0",
"keywords": [
"angular bootloader",
"angular 2 bootloader",
"angular async tag",
"angular 2 async scripts",
"angular2",
"angular2modules",
"AngularClass",
"Angular Class",
"AngularClassModules"
],
"bugs": {
"url": "https://github.com/AngularClass/angular2-bootloader/issues"
},
"homepage": "https://github.com/AngularClass/angular2-bootloader#readme"
}