-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
98 lines (98 loc) · 3.52 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
{
"name": "ngx-progress",
"version": "2.3.1",
"scripts": {
"ng": "ng",
"semantic-release": "semantic-release",
"start:demo": "ng serve demo --open --port=3310",
"build": "yarn run build:lib && yarn run build:demo",
"build:lib": "ng build lib -c production && yarn run copy:files",
"build:demo": "ng build demo -c production --base-href /ngx-progress/",
"publish:lib": "npx semantic-release",
"publish:demo": "npx angular-cli-ghpages --dir=./dist/demo",
"copy:files": "yarn run copy:readme && yarn run copy:license && yarn run copy:conduct",
"copy:license": "copyfiles ./LICENSE.md ./dist/lib",
"copy:readme": "copyfiles ./README.md ./dist/lib",
"copy:conduct": "copyfiles ./CODE_OF_CONDUCT.md ./dist/lib",
"adjust-version": "npm-run-all adjust-version:*",
"adjust-version:lib": "rjp projects/lib/package.json version $VERSION",
"adjust-version:main": "rjp package.json version $VERSION",
"prepare": "husky install",
"commit": "cz"
},
"private": true,
"dependencies": {
"@angular/animations": "~13.1.0",
"@angular/cdk": "~13.1.0",
"@angular/common": "~13.1.0",
"@angular/compiler": "~13.1.0",
"@angular/core": "~13.1.0",
"@angular/flex-layout": "^13.0.0-beta.36",
"@angular/forms": "~13.1.0",
"@angular/material": "^13.1.0",
"@angular/platform-browser": "~13.1.0",
"@angular/platform-browser-dynamic": "~13.1.0",
"@angular/router": "~13.1.0",
"ngx-color": "^7.2.0",
"rxjs": "~7.4.0",
"tslib": "^2.3.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "~13.0.4",
"@angular-eslint/builder": "13.0.1",
"@angular-eslint/eslint-plugin": "13.0.1",
"@angular-eslint/eslint-plugin-template": "13.0.1",
"@angular-eslint/schematics": "13.0.1",
"@angular-eslint/template-parser": "13.0.1",
"@angular/cli": "~13.0.4",
"@angular/compiler-cli": "~13.1.0",
"@angular/language-service": "~13.1.0",
"@commitlint/cli": "^15.0.0",
"@commitlint/config-conventional": "^15.0.0",
"@commitlint/prompt": "^15.0.0",
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/exec": "^6.0.2",
"@semantic-release/git": "^10.0.1",
"@types/node": "^16.11.12",
"@typescript-eslint/eslint-plugin": "5.3.0",
"@typescript-eslint/parser": "5.3.0",
"angular-cli-ghpages": "^1.0.0",
"angular-tslint-rules": "^1.20.1",
"copyfiles": "^2.4.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.2.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jasmine": "^4.1.3",
"eslint-plugin-jsdoc": "^37.2.0",
"eslint-plugin-no-null": "latest",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "latest",
"eslint-plugin-unicorn": "latest",
"husky": "^7.0.0",
"lint-staged": "^12.1.2",
"ng-packagr": "^13.1.1",
"npm-run-all": "^4.1.5",
"postcss-logical": "^5.0.0",
"prettier": "^2.2.1",
"pretty-quick": "^3.0.2",
"replace-json-property": "^1.6.3",
"sass": "^1.37.5",
"semantic-release": "^18.0.1",
"stylelint": "^14.1.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-config-standard-scss": "^3.0.0",
"stylelint-order": "^5.0.0",
"stylelint-scss": "^4.0.1",
"ts-node": "^9.1.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "~4.5.2",
"webpack-bundle-analyzer": "^4.4.2"
},
"repository": {
"type": "git",
"url": "https://github.com/kKen94/ngx-progress.git"
}
}