-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
97 lines (97 loc) · 3.79 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
{
"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 test:*",
"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": "run-s lint prettier:ci test:ci",
"lint": "ng lint",
"predeploy": "npm run build:demo",
"deploy": "angular-cli-ghpages --dir ./dist/ngx-cron --name=Swimlane [email protected]",
"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": "^17.1.2",
"@angular/cdk": "^17.1.2",
"@angular/common": "^17.1.2",
"@angular/compiler": "^17.1.2",
"@angular/core": "^17.1.2",
"@angular/forms": "^17.1.2",
"@angular/platform-browser": "^17.1.2",
"@angular/platform-browser-dynamic": "^17.1.2",
"@angular/router": "^17.1.2",
"@swimlane/ngx-ui": "^47.0.0-beta.2",
"codemirror": "^5.62.3",
"cron-validate": "^1.4.3",
"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.14.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "^17.1.2",
"@angular-eslint/builder": "13.0.1",
"@angular-eslint/eslint-plugin": "13.0.1",
"@angular-eslint/eslint-plugin-template": "13.0.1",
"@angular-eslint/template-parser": "13.0.1",
"@angular/cli": "^17.1.2",
"@angular/compiler-cli": "^17.1.2",
"@angular/language-service": "^17.1.2",
"@swimlane/prettier-config-swimlane": "^3.0.3",
"@types/jasmine": "^3.6.11",
"@types/jasminewd2": "^2.0.10",
"@types/node": "^12.20.19",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"angular-cli-ghpages": "^0.6.2",
"cross-env": "^7.0.3",
"cypress": "^10.6.0",
"eslint": "^8.2.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "latest",
"eslint-plugin-jsdoc": "^48.0.5",
"eslint-plugin-prefer-arrow": "latest",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "latest",
"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": "^17.1.2",
"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.2.0"
}
}