forked from arkon/ng-inline-svg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.22 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
{
"name": "ng-inline-svg",
"version": "9.1.0",
"description": "Angular directive for inserting an SVG inline within an element.",
"repository": {
"type": "git",
"url": "https://github.com/arkon/ng-inline-svg.git"
},
"homepage": "http://echeung.me/ng-inline-svg/",
"bugs": {
"url": "https://github.com/arkon/ng-inline-svg/issues"
},
"files": [
"src/*",
"lib/*",
"README.md",
"LICENSE"
],
"author": "Eugene Cheung",
"license": "MIT",
"keywords": [
"angular",
"ng",
"svg",
"inline",
"inject",
"element"
],
"main": "./lib/index.js",
"typings": "./lib/index.d.ts",
"scripts": {
"lint": "tslint --project tsconfig.json src/**/*.ts",
"build": "npm run lint && rimraf lib && ngc",
"prepare": "npm run build"
},
"peerDependencies": {
"@angular/core": ">=8.0.0",
"@angular/common": ">=8.0.0",
"rxjs": "^6.5.0"
},
"devDependencies": {
"@angular/common": "^8.2.9",
"@angular/compiler": "^8.2.9",
"@angular/compiler-cli": "^8.2.9",
"@angular/core": "^8.2.9",
"@angular/platform-browser": "^8.2.9",
"rimraf": "^3.0.0",
"rxjs": "^6.5.3",
"tslint": "^5.20.0",
"typescript": "~3.4.0",
"zone.js": "~0.9.1"
}
}