This repository has been archived by the owner on Feb 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
59 lines (59 loc) · 1.93 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
{
"name": "ngx-datetime-picker",
"version": "3.0.1",
"description": "Date, DateTime & Time Picker components that uses native HTML5 components on mobile",
"repository": {
"url": "https://github.com/RenovoSolutions/ngx-datetimepicker"
},
"scripts": {
"build": "ng-packagr -p package.json && sass src/scss/date.component.scss dist/ngx-datetime-picker.css",
"test": "ng test",
"test.once": "ng test --watch=false",
"setup": "cd ngx-datetimepicker && npm install",
"demo": "npm run build && cd demo && npm install && cp -fr ../dist/* node_modules/ngx-datetime-picker && ng serve",
"demo.build": "npm run build && cd demo && npm install && cp -fr ../dist/* node_modules/ngx-datetimepicker/ && ng build",
"demo.run": "npm run build && cd demo && npm install && cp -r ../dist/* node_modules/ngx-datetime-picker && ng serve"
},
"author": "Josh Sommer <joshdsommer@gmail.com> (https://twitter.com/_JoshSommer)",
"license": "ISC",
"devDependencies": {
"@angular-devkit/build-angular": "12.x",
"@angular/cli": "12.x",
"@angular/common": "12.x",
"@angular/compiler": "12.x",
"@angular/compiler-cli": "12.x",
"@angular/core": "12.x",
"@angular/forms": "12.x",
"@angular/localize": "12.x",
"@angular/platform-browser": "12.x",
"@angular/platform-browser-dynamic": "12.x",
"@types/jest": "27.x",
"karma": "6.x",
"karma-chrome-launcher": "3.x",
"karma-coverage": "2.x",
"karma-jasmine": "4.x",
"karma-jasmine-html-reporter": "1.x",
"ng-packagr": "12.x",
"rxjs": "6.x",
"sass": "1.x",
"typescript": "4.3.x",
"zone.js": "0.11.x"
},
"peerDependencies": {
"@angular/common": "12.x",
"@angular/core": "12.x",
"@angular/forms": "12.x"
},
"ngPackage": {
"lib": {
"cssUrl": "none",
"entryFile": "src/index.ts",
"styleIncludePaths": [
"./src/scss"
]
}
},
"dependencies": {
"tslib": "2.x"
}
}