-
Notifications
You must be signed in to change notification settings - Fork 174
/
Copy pathpackage.json
61 lines (61 loc) · 2.05 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
{
"name": "angular-svg-round-progressbar",
"version": "14.0.0",
"description": "Angular module that uses SVG to create a circular progressbar",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build-demo": "ng build demo --configuration production",
"build-lib": "ng build angular-svg-round-progressbar --configuration production && yarn copy-readme",
"release-lib": "yarn lint && yarn build-lib && yarn publish ./dist/angular-svg-round-progressbar",
"release-demo": "yarn lint && ng deploy demo",
"lint": "ng lint",
"copy-readme": "cp README.md dist/angular-svg-round-progressbar"
},
"repository": {
"type": "git",
"url": "git://github.com/crisbeto/angular-svg-round-progressbar.git"
},
"keywords": [
"angular",
"progress",
"circle",
"round",
"svg"
],
"author": "crisbeto",
"license": "MIT",
"bugs": {
"url": "https://github.com/crisbeto/angular-svg-round-progressbar/issues"
},
"homepage": "https://github.com/crisbeto/angular-svg-round-progressbar",
"devDependencies": {
"@angular-devkit/architect": "^0.1900.5",
"@angular-devkit/build-angular": "^19.0.5",
"@angular-eslint/builder": "~18.0.1",
"@angular-eslint/schematics": "~18.0.1",
"@angular-eslint/eslint-plugin": "~18.0.1",
"@angular-eslint/eslint-plugin-template": "~18.0.1",
"@angular-eslint/template-parser": "~18.0.1",
"@angular/cli": "^19.0.5",
"@angular/common": "^19.0.4",
"@angular/compiler": "^19.0.4",
"@angular/compiler-cli": "^19.0.4",
"@angular/core": "^19.0.4",
"@angular/forms": "^19.0.4",
"@angular/platform-browser": "^19.0.4",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"angular-cli-ghpages": "^2.0.3",
"eslint": "^8.57.0",
"eslint-plugin-ban": "^1.5.2",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jsdoc": "^31.1.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"ng-packagr": "^19.0.1",
"rxjs": "~6.6.3",
"tslib": "^2.3.0",
"typescript": "~5.6.3",
"zone.js": "~0.15.0"
}
}