forked from dougludlow/ng2-bs3-modal
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
82 lines (82 loc) · 2.59 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
79
80
81
82
{
"name": "ng2-bs4-modal",
"version": "0.6.2",
"description": "Angular2 Boostrap4 Modal Component",
"directories": {},
"files": [
"lib"
],
"main": "./lib/ng2-bs4-modal/ng2-bs4-modal.module.js",
"typings": "./lib/ng2-bs4-modal/ng2-bs4-modal.module.d.ts",
"scripts": {
"lint": "tslint ./src/**/*.ts",
"clean": "rimraf ./bundles/ ./components/ ./directives/ ./module/ ./ng2-bs4-modal.js ./ng2-bs4-modal.d.ts ./lib/",
"tsc": "tsc --project . --declaration",
"tsc-test": "tsc --project ./test",
"tsc-single": "tsc --project . --rootDir ./src --module system --outFile ./bundles/ng2-bs4-modal.js",
"uglify": "uglifyjs ./bundles/ng2-bs4-modal.js --output ./bundles/ng2-bs4-modal.min.js",
"bundles": "npm run tsc-single && npm run uglify",
"build": "npm run clean && npm run lint && npm run tsc && npm run bundles",
"prepublish": "npm run ngc-build",
"typings": "typings install -g",
"test": "karma start --single-run",
"test-watch": "karma start",
"lite": "lite-server",
"ngc-build": "ngc -p ./tsconfig-ngc.json"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/maxfisher05/ng2-bs4-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": "6.0.0",
"@angular/compiler": "6.0.0",
"@angular/compiler-cli": "6.0.0",
"@angular/core": "6.0.0",
"@angular/forms": "6.0.0",
"@angular/platform-browser": "6.0.0",
"@angular/platform-browser-dynamic": "6.0.0",
"@angular/router": "6.0.0",
"@types/jasmine": "2.5.36",
"bootstrap": "4.1.1",
"core-js": "^2.5.5",
"jasmine": "^2.4.1",
"jquery": "^3.3.1",
"karma": "^0.13.21",
"karma-chrome-launcher": "^0.2.2",
"karma-jasmine": "^0.3.7",
"karma-phantomjs-launcher": "^1.0.0",
"karma-spec-reporter": "0.0.24",
"lite-server": "^2.2.0",
"phantomjs-prebuilt": "2.1.7",
"popper.js": "1.14.3",
"reflect-metadata": "^0.1.8",
"rimraf": "^2.5.1",
"rxjs": "^6.0.0",
"systemjs": "0.19.47",
"tslint": "^3.7.1",
"typescript": "2.7.2",
"uglify-js": "^2.6.2",
"zone.js": "0.8.26"
},
"peerDependencies": {
"@angular/common": "^6",
"@angular/compiler": "^6",
"@angular/core": "^6",
"@angular/platform-browser": "^6",
"@angular/platform-browser-dynamic": "^6",
"bootstrap": "^4"
}
}