forked from dougludlow/ng2-bs3-modal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.5 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
68
69
70
71
72
73
74
75
76
77
78
{
"name": "ng2-bs3-modal",
"version": "0.10.4",
"description": "Angular2 Boostrap3 Modal Component",
"main": "ng2-bs3-modal.js",
"scripts": {
"start": "static",
"peer": "npm install es6-promise@^3.0.2 es6-shim@^0.33.3 [email protected] [email protected] [email protected]",
"lint": "tslint ./src/**/*.ts",
"clean": "rimraf bundles components directives **/*.ngfactory.ts ng2-bs3-modal.* ",
"tsc": "ngc -p .",
"tsc:single": "tsc -p tsconfig.bundle.json",
"uglify": "uglifyjs ./bundles/ng2-bs3-modal.js --output ./bundles/ng2-bs3-modal.min.js",
"bundle": "npm run tsc:single && npm run uglify",
"build": "npm run clean && npm run typings && npm run lint && npm run tsc && npm run bundle",
"prepublish": "npm run build",
"typings": "typings install",
"test": "karma start",
"test:w": "karma start --no-single-run"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/dougludlow/ng2-bs3-modal.git"
},
"keywords": [
"angular2",
"bootstrap",
"modal",
"component"
],
"author": "Douglas Ludlow <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/dougludlow/ng2-bs3-modal/issues"
},
"homepage": "https://github.com/dougludlow/ng2-bs3-modal#readme",
"devDependencies": {
"@angular/common": "^2.0.0",
"@angular/compiler": "^2.0.0",
"@angular/compiler-cli": "^0.6.3",
"@angular/core": "^2.0.0",
"@angular/forms": "^2.0.0",
"@angular/platform-browser": "^2.0.0",
"@angular/platform-browser-dynamic": "^2.0.0",
"@angular/platform-server": "^2.0.1",
"@angular/router": "^3.0.0",
"bootstrap": "^3.3.6",
"core-js": "^2.4.1",
"es6-shim": "^0.35.0",
"jasmine": "^2.4.1",
"jasmine-jquery-matchers": "^1.1.1",
"jquery": "^2.2.1",
"karma": "^0.13.21",
"karma-chrome-launcher": "^0.2.2",
"karma-jasmine": "^0.3.7",
"karma-phantomjs-launcher": "^1.0.2",
"karma-spec-reporter": "0.0.24",
"node-static": "^0.7.8",
"phantomjs-prebuilt": "^2.1.7",
"reflect-metadata": "^0.1.3",
"rimraf": "^2.5.1",
"rxjs": "^5.0.0-beta.12",
"systemjs": "^0.19.38",
"tslint": "^3.15.1",
"typescript": "^2.0.3",
"typings": "^1.3.3",
"uglify-js": "^2.6.2",
"zone.js": "^0.6.21"
},
"peerDependencies": {
"@angular/common": "^2.0.0",
"@angular/compiler": "^2.0.0",
"@angular/core": "^2.0.0",
"@angular/platform-browser": "^2.0.0",
"@angular/platform-browser-dynamic": "^2.0.0",
"bootstrap": "~3.3.x"
}
}