-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 4.1 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 4.1 KB
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
{
"name": "ngx-cron",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve --port 4200",
"build": "npm run build:lib && ng build --configuration production",
"build:demo": "npm run build:lib && cross-env NODE_ENV=production ng build --configuration production --base-href=\"/ngx-cron/\"",
"build:lib": "ng build @swimlane/ngx-cron --configuration production && npm run copy-files",
"copy-files": "cp README.md dist/swimlane/ngx-cron/README.md && cp LICENSE dist/swimlane/ngx-cron/LICENSE",
"package": "npm run build:lib",
"test": "run-s lint prettier:ci test:unit test:integration",
"test:prettier": "prettier --check \"{src,projects,cypress}/**/*.{js,ts,scss,css,md,json}\"",
"test:lint": "ng lint",
"test:unit": "ng test @swimlane/ngx-cron --watch=false --progress=false --browsers=ChromeHeadlessCI",
"test:integration": "start-server-and-test start http-get://localhost:4200 cypress:run",
"watch:unit": "ng test @swimlane/ngx-cron --watch",
"cypress:run": "cypress run",
"cypress:open": "cypress open",
"ci": "npm run test",
"lint": "ng lint",
"predeploy": "npm run build:demo",
"deploy": "angular-cli-ghpages --dir ./dist/ngx-cron --name=Swimlane --email=developer@swimlane.com",
"prepublish:lib": "npm run package",
"publish:lib": "npm publish ./dist/swimlane/ngx-cron",
"prepack": "npm run package",
"pack": "npm pack ./dist/swimlane/ngx-cron",
"prettier": "prettier --write \"{src,projects}/**/*.{js,ts,scss,css,md,json}\"",
"prettier:ci": "prettier --check \"{src,projects}/**/*.{js,ts,scss,css,md,json}\""
},
"private": true,
"dependencies": {
"@angular/animations": "^20.0.4",
"@angular/cdk": "^20.0.3",
"@angular/common": "^20.0.4",
"@angular/compiler": "^20.0.4",
"@angular/core": "^20.0.4",
"@angular/forms": "^20.0.4",
"@angular/platform-browser": "^20.0.4",
"@angular/platform-browser-dynamic": "^20.0.4",
"@angular/router": "^20.0.4",
"@swimlane/ngx-ui": "50.0.0-alpha.0",
"codemirror": "^5.62.3",
"cron-validate": "1.4.5",
"cronstrue": "^2.48.0",
"moment-timezone": "^0.5.33",
"ng-in-viewport": "^16.1.0",
"ng2-file-upload": "^5.0.0",
"ngx-moment": "^6.0.2",
"resize-observer-polyfill": "^1.5.1",
"rxjs": "7.5.6",
"tslib": "^2.4.0",
"zone.js": "~0.15.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "^20.0.3",
"@angular-eslint/builder": "20.1.1",
"@angular-eslint/eslint-plugin": "20.1.1",
"@angular-eslint/eslint-plugin-template": "20.1.1",
"@angular-eslint/template-parser": "20.1.1",
"@angular/cli": "^20.0.3",
"@angular/compiler-cli": "^20.0.4",
"@angular/language-service": "^20.0.4",
"@swimlane/eslint-config": "^2.0.0",
"@swimlane/prettier-config-swimlane": "^3.0.2",
"@types/jasmine": "^3.6.11",
"@types/jasminewd2": "^2.0.10",
"@types/node": "^12.20.19",
"@typescript-eslint/eslint-plugin": "^8.14.0",
"@typescript-eslint/parser": "^8.14.0",
"@typescript-eslint/types": "^8.14.0",
"@typescript-eslint/utils": "^8.14.0",
"angular-cli-ghpages": "^0.6.2",
"cross-env": "^7.0.3",
"cypress": "^10.6.0",
"eslint": "^8.2.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-babel": "5.3.1",
"eslint-plugin-cypress": "^3.3.0",
"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsdoc": "39.3.6",
"eslint-plugin-no-only-tests": "3.0.0",
"eslint-plugin-prefer-arrow": "1.2.3",
"eslint-plugin-security": "1.5.0",
"jasmine-core": "~4.4.0",
"jasmine-spec-reporter": "~7.0.0",
"karma": "~6.3.4",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~5.1.0",
"karma-jasmine-html-reporter": "^2.0.0",
"ng-packagr": "^20.0.1",
"npm-run-all": "^4.1.5",
"prettier": "^2.5.1",
"pretty-quick": "^3.1.3",
"protractor": "~7.0.0",
"start-server-and-test": "^1.13.1",
"ts-node": "~8.3.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "~5.8.3"
},
"volta": {
"node": "22.16.0",
"yarn": "4.9.2"
},
"packageManager": "yarn@4.9.2"
}