-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.95 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
{
"private": true,
"name": "angular-ico",
"version": "0.1.5",
"description": "Angular.io component for displaying inline SVG.",
"main": "src/index.ts",
"engines": {
"node": ">=8.10.0",
"npm": ">=5.7.1"
},
"scripts": {
"clean": "node tools/setup-clean.js",
"inline": "gulp inline",
"transpile": "ngc",
"rollup": "rollup -c",
"minify": "uglifyjs ./lib/index.umd.js --screw-ie8 --compress --mangle --comments --output ./lib/index.umd.min.js",
"bundle": "npm run inline && npm run transpile && npm run rollup && npm run minify",
"package": "node tools/setup-package.js",
"prebuild": "npm run clean",
"build": "npm run bundle && npm run package",
"link": "cd ./lib && npm link",
"publish": "cd ./lib && npm publish --access public",
"push": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thepipecat/angular-ico.git"
},
"keywords": ["angular", "ico", "icon", "svg", "aot"],
"author": {
"name": "Pedro Xudre",
"email": "xudre@me.com"
},
"contributors": [
{
"name": "Pedro Xudre",
"email": "xudre@me.com"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/thepipecat/angular-ico/issues"
},
"homepage": "https://github.com/thepipecat/angular-ico#readme",
"dependencies": {
"@angular/common": "^5.2.7",
"@angular/core": "^5.2.7"
},
"devDependencies": {
"@angular/compiler": "^5.2.7",
"@angular/compiler-cli": "^5.2.7",
"@types/lodash": "^4.14.104",
"@types/node": "^9.4.6",
"copyfiles": "^2.0.0",
"del": "^3.0.0",
"gulp": "^3.9.1",
"gulp-inline-ng2-template": "^4.1.0",
"html-minifier": "^3.5.10",
"json-loader": "^0.5.7",
"node-sass": "^4.7.2",
"rimraf": "^2.6.2",
"rollup": "^0.56.5",
"rxjs": "^5.5.6",
"ts-node": "^5.0.1",
"tslint": "^5.9.1",
"typescript": ">=2.4.2 <2.7",
"uglify-js": "^3.3.14",
"zone.js": "^0.8.20"
}
}