forked from zapinfo/ngx-cron-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 3.22 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
{
"name": "@zapinfo/ngx-cron-editor",
"description": "A cron expression generator for Angular 9+",
"author": "Ryan Morlok",
"contributors": [
"Claudiu Constantin",
"Eduardo Sarmiento",
"Håvard D. Johansen",
"Ryan Morlok"
],
"version": "0.4.15",
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/zapinfo/ngx-cron-editor"
},
"bugs": {
"url": "https://github.com/zapinfo/ngx-cron-editor/issues"
},
"homepage": "https://github.com/zapinfo/ngx-cron-editor",
"keywords": [
"angular",
"cron",
"cron-expression"
],
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"copyhtml": "copy 'src/app/cron-editor/*.html' './components/cron-editor/'",
"copycss": "copy 'src/app/cron-editor/*.css' './components/cron-editor/'",
"pack": "ng-packagr -p package.json",
"publish": "ng build && ng-packagr -p package.json && cd dist && npm publish"
},
"dependencies": {
"tslib": "^1.9.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^0.901.1",
"@angular-devkit/build-ng-packagr": "~0.901.1",
"@angular/animations": "^9.1.2",
"@angular/cdk": "^9.2.1",
"@angular/cli": "^9.1.1",
"@angular/common": "^9.1.2",
"@angular/compiler": "^9.1.2",
"@angular/compiler-cli": "9.1.2",
"@angular/core": "^9.1.2",
"@angular/forms": "^9.1.2",
"@angular/material": "^9.2.1",
"@angular/language-service": "^8.1.0",
"@angular/platform-browser": "^9.1.2",
"@angular/platform-browser-dynamic": "^9.1.2",
"@angular/router": "^9.1.2",
"@types/jasmine": "^3.3.13",
"@types/jasminewd2": "^2.0.6",
"@types/node": "^12.6.0",
"codelyzer": "^5.2.2",
"core-js": "^3.6.5",
"jasmine-core": "^3.4.0",
"jasmine-spec-reporter": "^4.2.1",
"karma": "^4.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-cli": "~1.0.1",
"karma-coverage-istanbul-reporter": "^2.0.5",
"karma-jasmine": "^2.0.1",
"karma-jasmine-html-reporter": "^1.4.2",
"ng-packagr": "^9.1.1",
"protractor": "^5.4.2",
"rxjs": "6.5.5",
"ts-node": "^8.8.2",
"tslint": "~6.1.1",
"typescript": "~3.8.3",
"zone.js": "^0.10.3"
},
"peerDependencies": {
"@angular/animations": "^9.1.2",
"@angular/cdk": "^9.2.1",
"@angular/common": "^9.1.2",
"@angular/compiler": "^9.1.2",
"@angular/core": "^9.1.2",
"@angular/forms": "^9.1.2",
"@angular/material": "^9.2.1",
"@angular/platform-browser": "^9.1.2",
"@angular/platform-browser-dynamic": "^9.1.2",
"@angular/router": "^9.1.2",
"core-js": "^3.6.5",
"rxjs": "6.5.5",
"zone.js": "^0.10.3"
},
"ngPackage": {
"lib": {
"entryFile": "index.ts"
}
},
"main": "bundles/ngx-cron-editor.umd.js",
"module": "fesm5/ngx-cron-editor.js",
"es2015": "fesm2015/ngx-cron-editor.js",
"esm5": "esm5/ngx-cron-editor.js",
"esm2015": "esm2015/ngx-cron-editor.js",
"fesm5": "fesm5/ngx-cron-editor.js",
"fesm2015": "fesm2015/ngx-cron-editor.js",
"typings": "ngx-cron-editor.d.ts",
"metadata": "ngx-cron-editor.metadata.json",
"sideEffects": false
}