forked from arkon/ng-inline-svg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.58 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
{
"name": "ng-inline-svg-w",
"version": "13.6.14",
"description": "Angular directive for inserting an SVG inline within an element. Fork of no longer supported ng-inline-svg",
"repository": {
"type": "git",
"url": "https://github.com/webocrat/ng-inline-svg.git"
},
"homepage": "http://echeung.me/ng-inline-svg/",
"bugs": {
"url": "https://github.com/webocrat/ng-inline-svg/issues"
},
"files": [
"lib_commonjs/*",
"lib_esmodule/*",
"README.md",
"LICENSE"
],
"author": "Eugene Cheung",
"license": "MIT",
"keywords": [
"angular",
"13",
"ng",
"ng-inline-svg",
"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": {
"rxjs": "^6.6.0 || ^7.4.0"
},
"devDependencies": {
"@angular/cli": "^13.3.7",
"@angular/common": "^13.3.11",
"@angular/compiler": "^13.3.11",
"@angular/compiler-cli": "^13.3.11",
"@angular/core": "^13.3.11",
"@angular/platform-browser": "^13.3.11",
"rimraf": "^3.0.2",
"rxjs": "^6.6.3",
"tslint": "^6.1.3",
"typescript": "~4.6.4",
"zone.js": "~0.11.4"
}
}