forked from MurhafSousli/ngx-sharebuttons
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
121 lines (121 loc) · 4 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "@ngx-sharebuttons/demo",
"version": "6.0.1",
"description": "Angular Share Buttons",
"homepage": "http://github.com/MurhafSousli/ngx-sharebuttons",
"author": {
"name": "Murhaf Sousli",
"url": "http://github.com/MurhafSousli"
},
"repository": {
"type": "git",
"url": "git://github.com/murhafsousli/ngx-sharebuttons.git"
},
"license": "MIT",
"keywords": [
"angular",
"share-links",
"share-buttons",
"sharebuttons",
"share",
"buttons",
"facebook",
"twitter",
"pinterest",
"tumblr",
"stumbleupon",
"googleplus",
"linkedin",
"reddit",
"telegram",
"vk",
"copy",
"print",
"email"
],
"bugs": {
"url": "http://github.com/murhafsousli/ngx-sharebuttons/issues"
},
"scripts": {
"ng": "ng",
"start": "ng serve",
"start-demo": "ng serve demo",
"start-demo-aot": "ng serve demo --aot",
"build-demo": "ng build demo --prod --base-href https://murhafsousli.github.io/ngx-sharebuttons/",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"sass-ts": "tsc .config/styles.ts --lib es7 && node .config/styles.js projects/button/src/lib dist/button",
"sass": "node .config/styles.js projects/button/src/lib dist/button",
"init-build": "npm run build-core && npm run version && npm run link-core && npm run build-button && npm run version && npm run link-button && npm run build-buttons && npm run version && npm run link-buttons && npm run sass-ts && npm run version",
"build-all": "npm run build-core && npm run build-button && npm run build-buttons && npm run sass && npm run version",
"build-core": "ng build core --prod",
"build-button": "ng build button --prod",
"build-buttons": "ng build buttons --prod",
"link-core": "npm link dist/core && npm link @ngx-share/core",
"link-button": "npm link dist/button && npm link @ngx-share/button",
"link-buttons": "npm link dist/buttons && npm link @ngx-share/buttons",
"publish-all": "node .config/publish.js",
"version": "node .config/version.js"
},
"private": true,
"dependencies": {
"@angular/animations": "^6.1.9",
"@angular/cdk": "^6.4.7",
"@angular/common": "^6.1.9",
"@angular/compiler": "^6.1.9",
"@angular/core": "^6.1.9",
"@angular/flex-layout": "^6.0.0-beta.16",
"@angular/forms": "^6.1.9",
"@angular/http": "^6.1.9",
"@angular/material": "^6.4.7",
"@angular/platform-browser": "^6.1.9",
"@angular/platform-browser-dynamic": "^6.1.9",
"@angular/router": "^6.1.9",
"@fortawesome/angular-fontawesome": "0.2.0",
"@fortawesome/fontawesome-svg-core": "^1.2.0-14",
"@fortawesome/free-brands-svg-icons": "^5.1.0-11",
"@fortawesome/free-solid-svg-icons": "^5.1.0-11",
"@ngx-progressbar/core": "^5.2.0",
"@ngx-progressbar/http": "^5.2.0",
"@ngx-progressbar/router": "^5.2.0",
"@ngx-pwa/local-storage": "^6.1.1",
"core-js": "^2.5.4",
"hammerjs": "^2.0.8",
"ngx-highlightjs": "^2.1.1",
"ngx-scrollbar": "^2.2.0",
"normalize.css": "^8.0.0",
"rxjs": "^6.3.3",
"zone.js": "^0.8.26"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.8.4",
"@angular-devkit/build-ng-packagr": "~0.8.4",
"@angular/cli": "^6.2.4",
"@angular/compiler-cli": "^6.1.9",
"@angular/language-service": "^6.1.9",
"@types/jasmine": "~2.8.6",
"@types/jasminewd2": "~2.0.3",
"@types/node": "~10.11.4",
"ansi-colors": "^3.1.0",
"codelyzer": "~4.4.4",
"cssnano": "^4.1.4",
"jasmine-core": "~3.2.1",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~3.0.0",
"karma-chrome-launcher": "~2.2.0",
"karma-coverage-istanbul-reporter": "~2.0.4",
"karma-jasmine": "~1.1.1",
"karma-jasmine-html-reporter": "^1.3.1",
"ng-packagr": "4.2.0",
"postcss-strip-inline-comments": "^0.1.5",
"protractor": "~5.4.1",
"replace-ext": "^1.0.0",
"ts-node": "~7.0.1",
"tsickle": ">=0.25.5",
"tslib": "^1.7.1",
"tslint": "~5.11.0",
"typescript": "~2.9.2"
}
}