-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
92 lines (92 loc) · 3.45 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
{
"name": "angular-year-calendar",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"build:lib": "ng run angular-year-calendar:build:production",
"build:ci": "ng build demo --configuration production --base-href=/angular-year-calendar/demo/",
"docs": "npm run docs:build",
"docs:build": "compodoc -p --tsconfig ./projects/angular-year-calendar/tsconfig.lib.json -n @iomechs/angular-year-calendar -d docs --hideGenerator --theme material",
"docs:serve": "npm run docs:build -- -s",
"docs:watch": "npm run docs:build -- -s -w",
"test": "ng test",
"test:lib": "ng test angular-year-calendar --watch false",
"lint": "ng lint",
"copy:readme": "cp ./README.md projects/angular-year-calendar/",
"copy:license": "cp ./LICENSE projects/angular-year-calendar/",
"copy:changelog": "cp ./CHANGELOG.md projects/angular-year-calendar/",
"copy:demo:ci": "cp -R dist/demo ./docs/demo",
"pre-release": "npm run lint && npm run copy:readme && npm run copy:license && npm run build:lib && npm run docs:build && npm run changelog",
"publish:lib": "npm publish ./dist/angular-year-calendar --access public",
"changelog": "conventional-changelog -p angular -k projects/angular-year-calendar/package.json -i CHANGELOG.md -s && git add CHANGELOG.md",
"release": "npm run publish:lib",
"e2e": "ng e2e",
"deploy": "ng deploy demo --base-href=/angular-year-calendar/"
},
"repository": "https://github.com/iomechs/angular-year-calendar",
"keywords": [
"iomechs",
"angular",
"calendar",
"year calendar",
"year-calendar",
"angular calendar",
"angular9 calendar",
"ng calendar",
"ng-calendar"
],
"license": "MIT",
"private": false,
"dependencies": {
"@angular/animations": "^15.0.2",
"@angular/cdk": "^15.0.1",
"@angular/common": "^15.0.2",
"@angular/compiler": "^15.0.2",
"@angular/core": "^15.0.2",
"@angular/forms": "^15.0.2",
"@angular/platform-browser": "^15.0.2",
"@angular/platform-browser-dynamic": "^15.0.2",
"@angular/router": "^15.0.2",
"@iomechs/angular-year-calendar": "^1.0.3",
"angular-cli-ghpages": "^0.6.0",
"conventional-changelog-cli": "^2.0.31",
"date-fns": "^2.5.1",
"rxjs": "~6.6.7",
"tinycolor2": "^1.4.1",
"tslib": "^2.0.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^15.0.2",
"@angular-devkit/build-ng-packagr": "^0.1002.4",
"@angular-eslint/builder": "15.1.0",
"@angular-eslint/eslint-plugin": "15.1.0",
"@angular-eslint/eslint-plugin-template": "15.1.0",
"@angular-eslint/schematics": "15.1.0",
"@angular-eslint/template-parser": "15.1.0",
"@angular/cli": "^15.0.2",
"@angular/compiler-cli": "^15.0.2",
"@angular/language-service": "^15.0.2",
"@compodoc/compodoc": "^1.1.11",
"@types/jasmine": "~3.3.8",
"@types/jasminewd2": "~2.0.3",
"@types/node": "^12.11.1",
"@typescript-eslint/eslint-plugin": "5.44.0",
"@typescript-eslint/parser": "5.44.0",
"eslint": "^8.28.0",
"jasmine-core": "~3.5.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~6.4.1",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"karma-spec-reporter": "0.0.32",
"ng-packagr": "^15.0.1",
"protractor": "~7.0.0",
"ts-node": "~7.0.0",
"typescript": "~4.8.4"
}
}