forked from gund/ng-dynamic-component
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.22 KB
/
Copy pathpackage.json
File metadata and controls
103 lines (103 loc) · 3.22 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "ng-dynamic-component",
"version": "0.0.0-semantically-released",
"description": "Dynamic components with full life-cycle support for inputs and outputs for Angular",
"main": "dist/bundles/ng-dynamic-component.umd.js",
"module": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"commit": "git-cz",
"prepublish": "npm run build",
"prebuild": "rimraf dist compiled",
"build": "npm-run-all -s build:*",
"build:main": "ngc",
"build:umd": "rollup -c rollup.config.js",
"postbuild:umd": "uglifyjs -c --screw-ie8 --comments -o dist/bundles/ng-dynamic-component.umd.min.js dist/bundles/ng-dynamic-component.umd.js",
"pretest": "npm run cleancoverage",
"test": "karma start",
"pretest:once": "npm run cleancoverage",
"test:once": "karma start",
"test:report": "cd coverage && codecov",
"cleancoverage": "rimraf coverage",
"check-coverage": "istanbul check-coverage --functions 75 --lines 75 --branches 75 --statements 75",
"ci": "npm run test:once && npm run check-coverage",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"keywords": [
"angular",
"angular2",
"ng",
"dynamic",
"component",
"input",
"output",
"life-cycle"
],
"author": "Alex Malkevich <malkevich.alex@gmail.com>",
"license": "MIT",
"peerDependencies": {
"@angular/core": "4.0.0",
"@angular/common": "4.0.0",
"rxjs": "^5.2.0"
},
"devDependencies": {
"@angular/common": "4.0.0",
"@angular/compiler": "4.0.0",
"@angular/compiler-cli": "4.0.0",
"@angular/core": "4.0.0",
"@angular/platform-browser": "4.0.0",
"@angular/platform-browser-dynamic": "4.0.0",
"@angular/platform-server": "4.0.0",
"@types/jasmine": "^2.5.43",
"angular2-template-loader": "^0.6.2",
"awesome-typescript-loader": "^3.1.2",
"codecov": "^1.0.1",
"codelyzer": "^3.0.0-beta.4",
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.0.0",
"istanbul": "^0.4.5",
"jasmine-core": "^2.5.2",
"jasmine-spec-reporter": "^3.0.0",
"json-loader": "^0.5.4",
"karma": "^1.4.1",
"karma-chrome-launcher": "^2.0.0",
"karma-cli": "^1.0.1",
"karma-coverage-istanbul-reporter": "^0.2.3",
"karma-jasmine": "^1.1.0",
"karma-mocha-reporter": "^2.2.2",
"karma-remap-istanbul": "^0.4.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.2",
"npm-run-all": "^4.0.2",
"raw-loader": "^0.5.1",
"rimraf": "^2.6.1",
"rollup": "^0.41.6",
"rollup-globals-regex": "^0.0.1",
"rollup-plugin-node-resolve": "^2.0.0",
"rxjs": "^5.2.0",
"semantic-release": "^6.3.2",
"source-map": "^0.5.6",
"source-map-loader": "^0.2.0",
"sourcemap-istanbul-instrumenter-loader": "^0.2.0",
"tslib": "^1.6.0",
"tslint": "^4.5.1",
"tslint-loader": "^3.4.3",
"typescript": "^2.2.1",
"uglifyjs": "^2.4.10",
"webpack": "^2.3.2",
"webpack-dev-server": "^2.4.2",
"zone.js": "^0.8.5"
},
"engines": {
"node": ">=6.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"repository": {
"type": "git",
"url": "https://github.com/gund/ng-dynamic-component.git"
}
}