-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
78 lines (78 loc) · 2.67 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
{
"name": "ng-svg-icon-sprite-app",
"version": "1.14.0",
"license": "MIT",
"author": "Jan Suwart",
"description": "Angular 17+ package for generating and using inline SVG icons in your project",
"bugs": {
"url": "https://github.com/jannicz/ng-svg-icon-sprite/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jannicz/ng-svg-icon-sprite.git"
},
"scripts": {
"postinstall": "npm run build:lib",
"ng": "ng",
"start": "ng serve",
"build": "ng test icon-sprite --browsers=ChromeHeadless --watch=false && ng build --configuration production",
"build:lib": "ng build icon-sprite --configuration production",
"build:all": "npm run build:lib && npm run build",
"prebuild:lib": "cpr ./README.md projects/icon-sprite/README.md -o && cpr ./LICENSE projects/ng-svg-icon-sprite/LICENSE -o",
"postbuild:lib": "cpr projects/icon-sprite/svg-icon-sprite-anim.gif ./dist/ng-svg-icon-sprite/svg-icon-sprite-anim.gif -o",
"test": "ng test icon-sprite --browsers=ChromeHeadless",
"lint": "ng lint",
"e2e": "ng e2e",
"generate:svg-sprite": "svg2sprite ./src/assets/icons ./src/assets/sprites/sprite.svg --stripAttrs fill --stripAttrs stroke --stripAttrs id",
"generate:svg-multicolor-sprite": "svg2sprite ./src/assets/svg-images ./src/assets/sprites/image-sprite.svg"
},
"private": true,
"dependencies": {
"@angular/animations": "^17.x",
"@angular/common": "^17.x",
"@angular/compiler": "^17.x",
"@angular/core": "^17.x",
"@angular/forms": "^17.x",
"@angular/platform-browser": "^17.x",
"@angular/platform-browser-dynamic": "^17.x",
"@angular/router": "^17.x",
"rxjs": "^7.8.1",
"web-animations-js": "^2.3.2",
"zone.js": "0.14.5"
},
"devDependencies": {
"@angular-devkit/build-angular": "^17.x",
"@angular-devkit/build-ng-packagr": "^0.1002.0",
"@angular/cli": "^17.x",
"@angular/compiler-cli": "^17.x",
"@angular/language-service": "^17.x",
"@types/jasmine": "^4.6.4",
"@types/jasminewd2": "^2.0.13",
"@types/node": "^20.12.8",
"codelyzer": "^6.0.2",
"cpr": "^3.0.1",
"jasmine-core": "^5.1.2",
"jasmine-spec-reporter": "^7.0.0",
"karma": "^6.4.3",
"karma-chrome-launcher": "^3.2.0",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-jasmine": "^5.1.0",
"karma-jasmine-html-reporter": "^2.1.0",
"ng-packagr": "^17.x",
"protractor": "7.0.0",
"svg2sprite-cli": "^2.0.1",
"svg4everybody": "^2.1.9",
"ts-node": "^10.9.2",
"tsickle": "^0.46.3",
"tslib": "^2.6.2",
"eslint": "^8.57.0",
"typescript": "5.x"
},
"keywords": [
"icon",
"icons",
"svg",
"sprite",
"angular"
]
}