This repository has been archived by the owner on Nov 6, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
66 lines (66 loc) · 1.84 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
{
"name": "ionic-multi-camera",
"description": "Take multiple photos one after another",
"version": "1.0.1",
"license": "MIT",
"author": {
"name": "Daniel Müller",
"email": "[email protected]",
"url": "https://github.com/chdanielmueller"
},
"homepage": "https://github.com/Surnet/ionic-multi-camera",
"bugs": {
"url": "https://github.com/Surnet/ionic-multi-camera/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Surnet/ionic-multi-camera.git"
},
"keywords": [
"ionic",
"multi",
"image",
"picture",
"photo",
"camera"
],
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"files": "dist",
"scripts": {
"ngc": "ngc",
"gulp": "gulp",
"build": "rm -rf dist tmp && npm run gulp && npm run ngc",
"publishPackage": "npm run build && npm publish"
},
"devDependencies": {
"@angular/common": "^4.4.3",
"@angular/compiler": "^4.4.3",
"@angular/compiler-cli": "^4.4.3",
"@angular/core": "^4.4.3",
"@angular/forms": "^4.4.3",
"@angular/platform-browser": "^4.4.3",
"@angular/platform-browser-dynamic": "^4.4.3",
"@ionic-native/camera-preview": "^4.5.2",
"@ionic-native/core": "^4.5.2",
"@ionic-native/device-motion": "^4.5.2",
"@ionic-native/file": "^4.5.2",
"@ionic-native/status-bar": "^4.5.2",
"@types/node": "^8.5.7",
"gulp": "^3.9.1",
"gulp-angular-embed-templates": "^2.3.0",
"gulp-angular2-embed-sass": "^0.5.1",
"ionic-angular": "^3.9.2",
"rxjs": "^5.5.2",
"typescript": "^2.5.3",
"zone.js": "^0.8.18"
},
"peerDependencies": {
"@angular/core": "*",
"@ionic-native/camera-preview": ">=4.5.2",
"@ionic-native/device-motion": ">=4.5.2",
"@ionic-native/file": ">=4.5.2",
"@ionic-native/status-bar": ">=4.5.2",
"ionic-angular": ">=3.9.2"
}
}