forked from czeckd/angular-svg-icon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.5 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
{
"name": "angular-svg-icon",
"description": "Angular 2+ component for inlining SVGs allowing them to be easily styled with CSS.",
"version": "4.1.1",
"repository": {
"type": "git",
"url": "https://github.com/czeckd/angular-svg-icon.git"
},
"author": "David Czeck",
"license": "MIT",
"typings": "index.d.ts",
"keywords": [
"angular",
"angular2",
"angular4",
"svg",
"icon"
],
"scripts": {
"start": "rimraf runt && npm run dist && tsc && concurrently \"tsc -w\" \"lite-server\" ",
"tsc": "tsc",
"tsc:w": "tsc -w",
"clean": "rimraf runt dist",
"dist": "tools/mkdist",
"lite": "lite-server",
"lint": "tslint -c tslint.json ./app/**/*.ts -t verbose || true"
},
"peerDependencies": {
"@angular/core": "^2.4.0 || ^4.0.0",
"@angular/http": "^2.4.0 || ^4.0.0",
"rxjs": "^5.2.0"
},
"devDependencies": {
"@angular/common": "^4.0.0",
"@angular/compiler": "^4.0.0",
"@angular/compiler-cli": "^4.0.0",
"@angular/core": "^4.0.0",
"@angular/forms": "^4.0.0",
"@angular/http": "^4.0.0",
"@angular/platform-browser": "^4.0.0",
"@angular/platform-browser-dynamic": "^4.0.0",
"@types/core-js": "^0.9.39",
"@types/node": "^6.0.60",
"concurrently": "^2.2.0",
"core-js": "^2.4.1",
"lite-server": "^2.2.2",
"rimraf": "^2.6.1",
"rollup": "^0.41.6",
"rxjs": "^5.2.0",
"systemjs": "0.19.47",
"ts-node": "^3.0.2",
"tslint": "~4.5.0",
"typescript": "~2.2.0",
"zone.js": "^0.8.4"
}
}