forked from arkon/ng-inline-svg
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
57 lines (57 loc) · 1.55 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
{
"name": "ng-inline-svg-2",
"version": "15.0.1",
"description": "Angular directive for inserting an SVG inline within an element.",
"repository": {
"type": "git",
"url": "https://github.com/siandreev/ng-inline-svg.git"
},
"homepage": "https://github.com/siandreev/ng-inline-svg",
"bugs": {
"url": "https://github.com/siandreev/ng-inline-svg/issues"
},
"files": [
"lib_commonjs/*",
"lib_esmodule/*",
"README.md",
"LICENSE"
],
"author": "Eugene Cheung",
"license": "MIT",
"keywords": [
"angular",
"ng",
"svg",
"inline",
"inject",
"element"
],
"main": "./lib_commonjs/index.js",
"module": "./lib_esmodule/index.js",
"jsnext:main": "./lib_esmodule/index.js",
"typings": "./lib_commonjs/index.d.ts",
"scripts": {
"lint": "tslint --project tsconfig.json src/**/*.ts",
"build:commonjs": "rimraf lib_commonjs && ngc -p tsconfig.json",
"build:esmodule": "rimraf lib_esmodule && ngc -p tsconfig.module.json",
"build": "npm run lint && npm run build:commonjs && npm run build:esmodule",
"prepare": "npm run build"
},
"peerDependencies": {
"@angular/core": ">=14.0.2",
"@angular/common": ">=14.0.2",
"rxjs": "^6.6.0 || ^7.4.0"
},
"devDependencies": {
"@angular/common": "^14.0.2",
"@angular/compiler": "^14.0.2",
"@angular/compiler-cli": "^14.0.2",
"@angular/core": "^14.0.2",
"@angular/platform-browser": "^14.0.2",
"rimraf": "^3.0.2",
"rxjs": "^7.5.5",
"tslint": "^6.1.3",
"typescript": "~4.7.4",
"zone.js": "~0.11.6"
}
}