forked from Gillardo/ngx-bootstrap-datetime-popup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
119 lines (119 loc) · 3.89 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "ngx-bootstrap-datetime",
"version": "3.1.1",
"description": "Datetime popup using ngx-bootstrap (forked)",
"main": "./dist/index.umd.js",
"module": "./dist/index.js",
"typings": "./dist/index.d.ts",
"license": "MIT",
"keywords": [
"angular",
"angular4",
"angular6",
"aot",
"aot-compatible",
"aot-compilation",
"library",
"ng",
"timepicker",
"datepicker",
"ngx-bootstrap",
"ngx-bootstrap-datetime-popup",
"typescript"
],
"author": {
"name": "Darren Gillard",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/bbrink68/ngx-bootstrap-datetime-popup"
},
"bugs": {
"url": "https://github.com/bbrink68/ngx-bootstrap-datetime-popup/issues"
},
"url": "https://github.com/bbrink68/ngx-bootstrap-datetime-popup#readme",
"scripts": {
"build": "npm run build:esm && npm run build:umd",
"build:esm": "gulp inline-templates && npm run ngcompile",
"build:esm:watch": "gulp build:esm:watch",
"build:umd": "webpack --config webpack-umd.config.ts",
"build:umd:watch": "npm run build:umd -- --watch",
"build:watch": "concurrently --raw \"npm run build:umd:watch\" \"npm run build:esm:watch\"",
"ci": "npm run lint && npm run test && npm run build && npm run docs",
"clean:all": "npm run clean:tmp && rimraf node_modules",
"clean:tmp": "rimraf coverage dist tmp docs",
"codecov": "cat coverage/lcov.info | codecov",
"docs": "compodoc -p tsconfig.json -d docs --disableCoverage --disablePrivate --disableProtected --disableInternal --disableLifeCycleHooks",
"explorer": "source-map-explorer ./dist/index.umd.js",
"gh-pages": "rimraf docs && npm run docs && gh-pages -d docs",
"lint": "npm run tslint 'src/**/*.ts'",
"ngcompile": "node_modules/.bin/ngc -p tsconfig-aot.json",
"postversion": "git push && git push --tags",
"prebuild": "rimraf dist tmp",
"prebuild:watch": "rimraf dist tmp",
"preinstall": "node_modules/.bin/ngc -p tsconfig-aot.json",
"prepublishOnly": "npm run ci",
"preversion": "npm run ci",
"tslint": "tslint"
},
"dependencies": {
"ngx-bootstrap": "^3.0.0",
"rxjs-compat": "^6.2.0",
"webpack-cli": "^3.0.3"
},
"peerDependencies": {
"@angular/common": "^6.0.4",
"@angular/core": "^6.0.4",
"@angular/forms": "^4.0.0"
},
"devDependencies": {
"@angular/common": "^6.0.4",
"@angular/compiler": "^6.0.4",
"@angular/compiler-cli": "^6.0.4",
"@angular/core": "^6.0.4",
"@angular/forms": "^6.0.4",
"@angular/platform-browser": "^6.0.4",
"@angular/platform-browser-dynamic": "^6.0.4",
"@compodoc/compodoc": "^1.1.3",
"@types/jasmine": "^2.8.8",
"@types/karma": "^1.7.3",
"@types/node": "^10.0.4",
"@types/tapable": "^1.0.2",
"@types/webpack": "^4.4.0",
"@types/webpack-env": "^1.13.6",
"angular2-template-loader": "^0.6.2",
"awesome-typescript-loader": "^5.0.0",
"codecov": "^3.0.2",
"codelyzer": "^4.3.0",
"concurrently": "^3.5.1",
"css-loader": "^0.28.11",
"gh-pages": "^1.2.0",
"gulp": "^3.9.1",
"gulp-inline-ng2-template": "^4.1.0",
"istanbul-instrumenter-loader": "^3.0.1",
"jasmine-core": "^3.1.0",
"json-loader": "^0.5.7",
"karma": "^2.0.2",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage-istanbul-reporter": "^2.0.1",
"karma-jasmine": "^1.1.2",
"karma-mocha-reporter": "^2.2.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^3.0.0",
"node-sass": "^4.9.0",
"raw-loader": "^0.5.1",
"rimraf": "^2.6.2",
"rxjs": "^6.2.0",
"sass-loader": "^7.0.3",
"source-map-explorer": "^1.5.0",
"to-string-loader": "^1.1.5",
"ts-node": "^6.1.0",
"tslint": "^5.10.0",
"typescript": "^2.7.2",
"webpack": "^4.11.1",
"webpack-angular-externals": "^1.0.2",
"webpack-rxjs-externals": "^2.0.0",
"zone.js": "^0.8.26"
}
}