This repository has been archived by the owner on Oct 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.77 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
65
66
67
{
"name": "ngx-dynamic-template",
"version": "2.3.1",
"license": "MIT",
"keywords": [
"angular",
"angular2",
"angular4",
"dynamic-template",
"angular2-dynamic-template",
"angular4-dynamic-template",
"ngx-dynamic",
"ng2-dynamic",
"ng4-dynamic",
"ng2-dynamic-template",
"ng4-dynamic-template"
],
"author": "Alex Poter <a.poterenko@gmail.com>",
"scripts": {
"clean": "npm cache clean",
"bundle": "npm run compile && npm run rollup && npm run rollup:min",
"compile": "node_modules/.bin/ngc -p tsconfig.json",
"rollup": "rollup -c rollup.conf.js",
"rollup:min": "rollup -c rollup-uglify.conf.js",
"deploy": "npm install && npm run bundle && npm publish ./"
},
"peerDependencies": {
"@angular/core": ">=5.0.0",
"@angular/common": ">=5.0.0",
"rxjs": ">=5.0.0"
},
"devDependencies": {
"@angular/common": "5.0.0",
"@angular/compiler": "5.0.0",
"@angular/compiler-cli": "5.0.0",
"@angular/core": "5.0.0",
"@angular/platform-browser": "5.0.0",
"@types/core-js": "~0.9.28",
"@types/node": "~6.0.38",
"core-js": "^2.4.1",
"rollup": "~0.36.3",
"rollup-plugin-commonjs": "~7.0.0",
"rollup-plugin-includepaths": "~0.1.8",
"rollup-plugin-uglify": "~1.0.1",
"rxjs": "^5.5.0",
"tslint": "^5.8.0",
"typescript": ">=2.4.2 <2.5",
"zone.js": "^0.8.18"
},
"repository": {
"type": "git",
"url": "https://github.com/apoterenko/ngx-dynamic-template.git"
},
"bugs": {
"url": "https://github.com/apoterenko/ngx-dynamic-template/issues"
},
"module": "index.js",
"typings": "index.d.ts",
"main": "bundles/ngx-dynamic-template.umd.js",
"engines": {
"node": ">= 6.5",
"npm": ">= 3"
},
"dependencies": {
"jshashes": "^1.0.7"
}
}