forked from nkalinov/ng2-datetime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 2.09 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
{
"name": "ng2-datetime",
"version": "1.3.2",
"description": "Bootstrap datetime picker for Angular",
"main": "ng2-datetime.js",
"typings": "ng2-datetime.d.ts",
"keywords": [
"angular2",
"ng2",
"bootstrap",
"date",
"time",
"datetime",
"picker"
],
"author": "Nikola Kalinov <[email protected]> (http://nkalinov.com)",
"scripts": {
"start": "webpack-dev-server --inline --progress --port 8080",
"test": "karma start",
"tsc": "tsc",
"build": "rimraf dist && webpack --config config/webpack.prod.js --progress --profile --bail && npm run tsc && cp .nojekyll dist/"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nkalinov/ng2-datetime.git"
},
"dependencies": {
"bootstrap": ">=3.0.0",
"bootstrap-datepicker": "1.7.0-RC1",
"bootstrap-timepicker": "^0.5.2",
"jquery": ">=2.2.1"
},
"devDependencies": {
"@angular/common": "^4.0.3",
"@angular/compiler": "^4.0.3",
"@angular/core": "^4.0.3",
"@angular/forms": "^4.0.3",
"@angular/platform-browser": "^4.0.3",
"@angular/platform-browser-dynamic": "^4.0.3",
"@types/core-js": "^0.9.35",
"@types/jasmine": "^2.5.40",
"@types/jquery": "^2.0.37",
"@types/node": "^6.0.55",
"angular2-template-loader": "^0.4.0",
"awesome-typescript-loader": "^3.1.2",
"core-js": "^2.4.1",
"css-loader": "^0.23.1",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.8.5",
"html-loader": "^0.4.3",
"html-webpack-plugin": "^2.25.0",
"jasmine-core": "^2.4.1",
"karma": "^1.2.0",
"karma-jasmine": "^1.1.0",
"karma-phantomjs-launcher": "^1.0.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.8.1",
"null-loader": "^0.1.1",
"phantomjs-prebuilt": "^2.1.14",
"raw-loader": "^0.5.1",
"reflect-metadata": "^0.1.9",
"rimraf": "^2.5.2",
"rxjs": "^5.0.2",
"style-loader": "^0.13.1",
"tslint": "^4.5.1",
"typescript": "^2.2.2",
"webpack": "^1.14.0",
"webpack-dev-server": "^1.14.1",
"webpack-merge": "^0.14.0",
"zone.js": "^0.8.4"
}
}