This repository was archived by the owner on May 20, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathpackage.json
51 lines (51 loc) · 1.66 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
{
"name": "ng-dynamic",
"version": "3.0.2",
"description": "dynamic contents projection in Angular",
"main": "index.js",
"scripts": {
"clean": "rimraf {src,demo}/**/*.{ngfactory,ngsummary,metadata}.* && rimraf {src,demo}/**/*.js && rimraf {src,demo}/**/*.d.ts",
"prebuild": "npm run clean",
"build": "npm run lint && ngc -p .",
"preversion": "npm run clean && npm test",
"test": "npm run build && karma start karma.conf.js && npm run demo:build",
"demo:build": "ngc -p tsconfig.demo.json && webpack demo/src/main.js demo/dist/main.js",
"demo": "npm run demo:build && static demo",
"lint": "tslint -e **/*.ngfactory.ts --project tsconfig.json"
},
"repository": {
"type": "git",
"url": "https://github.com/laco0416/ng-dynamic.git"
},
"author": "laco <laco0416+github@gmail.com>",
"license": "MIT",
"peerDependencies": {
"@angular/core": ">=4.0.0",
"@angular/platform-browser": ">=4.0.0",
"@angular/compiler": ">=4.0.0"
},
"devDependencies": {
"@angular/common": "^4.0.0",
"@angular/compiler": "^4.0.0",
"@angular/compiler-cli": "^4.0.0",
"@angular/core": "^4.0.0",
"@angular/forms": "^4.0.0",
"@angular/platform-browser": "^4.0.0",
"@angular/platform-browser-dynamic": "^4.0.0",
"@types/jasmine": "2.5.40",
"core-js": "^2.4.1",
"jasmine": "^2.5.3",
"karma": "^1.3.0",
"karma-chrome-launcher": "^2.0.0",
"karma-cli": "^1.0.1",
"karma-jasmine": "^1.1.0",
"node-static": "^0.7.9",
"rimraf": "^2.5.4",
"rxjs": "^5.0.3",
"systemjs": "^0.19.37",
"tslint": "^3.15.1",
"typescript": "^2.2.1",
"webpack": "^2.3.2",
"zone.js": "^0.8.5"
}
}