-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·53 lines (53 loc) · 1.45 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
{
"name": "ngx-boot-modal",
"version": "0.0.8",
"description": "Open modal window (dialog box) for your angular2 applications using bootstrap3.",
"license": "MIT",
"readmeFilename": "README.md",
"private": true,
"author": {
"name": "Fernando Fariña",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/penniath/ngx-boot-modal.git"
},
"bugs": {
"url": "https://github.com/penniath/ngx-boot-modal/issues"
},
"scripts": {
"transpile": "ngc",
"package": "rollup -c",
"minify": "uglifyjs dist/bundles/ngx-boot-modal.umd.js --screw-ie8 --compress --mangle --comments --output dist/bundles/ngx-boot-modal.umd.min.js",
"build": "npm run transpile && npm run package && npm run minify"
},
"tags": [
"modal",
"angular2",
"typescript",
"angular2-modal"
],
"peerDependencies": {
"@angular/core": "^4.4.3",
"@angular/router": "^4.4.3"
},
"devDependencies": {
"@angular/common": "^4.4.3",
"@angular/compiler": "^4.4.3",
"@angular/compiler-cli": "^4.4.3",
"@angular/core": "^4.4.3",
"@angular/router": "^4.4.3",
"@types/node": "^8.0.30",
"bootstrap": "^3.3.7",
"es6-shim": "^0.35.2",
"reflect-metadata": "^0.1.10",
"rollup": "^0.50.0",
"rxjs": "^5.0.3",
"tslint": "^5.7.0",
"tslint-stylish": "^2.1.0-beta",
"typescript": "^2.5.2",
"uglify-js": "^3.1.1",
"zone.js": "^0.8.17"
}
}