-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
64 lines (64 loc) · 2.01 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
{
"name": "ng-router-loader",
"version": "2.0.0",
"description": "Webpack loader for `NgModule` lazy loading using the angular router",
"author": "Shlomi Assaf <shlomiasaf@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/shlomiassaf/ng-router-loader.git"
},
"main": "index.js",
"typings": "index.d.ts",
"keywords": [
"webpack",
"loader",
"angular",
"aot",
"router",
"lazy-loading"
],
"scripts": {
"clean:ngc": "rm -rf __codegen__",
"clean:docs": "rm -rf docs/docs_dist",
"clean:dist": "rm -rf dist",
"ci": "npm run test",
"test": "npm run compile_integration && npm run build && ./node_modules/.bin/mocha dist/test spec --recursive",
"build": "npm run clean:dist && ./node_modules/.bin/tsc",
"watch": "npm run build -- -w",
"compile_integration": "npm run clean:ngc && ./node_modules/.bin/ngc -p tsconfig.integration.json",
"docs": "npm run clean:docs && cd docs && ../node_modules/.bin/typedoc --options typedoc.json --excludePrivate"
},
"dependencies": {
"loader-utils": "^0.2.16"
},
"bugs": {
"url": "https://github.com/shlomiassaf/ng-router-loader/issues"
},
"homepage": "https://github.com/shlomiassaf/ng-router-loader#readme",
"devDependencies": {
"@angular/common": "~2.4.1",
"@angular/compiler": "~2.4.1",
"@angular/compiler-cli": "~2.4.1",
"@angular/core": "~2.4.1",
"@angular/forms": "~2.4.1",
"@angular/http": "~2.4.1",
"@angular/material": "2.0.0-beta.1",
"@angular/platform-browser": "~2.4.1",
"@angular/platform-browser-dynamic": "~2.4.1",
"@angular/platform-server": "~2.4.1",
"@angular/router": "~3.4.1",
"@types/chai": "^3.4.34",
"@types/mocha": "^2.2.35",
"@types/node": "^6.0.55",
"@types/webpack": "^2.1.0",
"chai": "^3.5.0",
"mocha": "^3.2.0",
"rxjs": "^5.0.2",
"ts-node": "^2.0.0",
"typedoc": "^0.5.3",
"typedoc-markdown-theme": "^0.0.4",
"typescript": "2.0.10",
"zone.js": "~0.7.4"
}
}