forked from cloudinary/cloudinary_angular
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
88 lines (88 loc) · 3.17 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
{
"name": "@cloudinary/angular-5.x",
"version": "1.0.0",
"description": "The formal Cloudinary Angular SDK to enhance your applications with image and video components powered by Cloudinary",
"keywords": [
"cloudinary",
"angular",
"angular2",
"angular4",
"angular5",
"angularjs",
"ng",
"ng2",
"image",
"images",
"video",
"sdk",
"performance"
],
"main": "index.js",
"types": "index.ts",
"scripts": {
"lint": "tslint **/*.ts --exclude \"**/*.d.ts\" -t verbose --project tsconfig.json",
"test": "tsc && concurrently \"tsc -w\" \"karma start karma.conf.js\"",
"test-once": "tsc && karma start karma.conf.js --single-run --no-auto-watch --browsers PhantomJS",
"install-sample-from-source": "node ./scripts/install-sample-from-source.js samples/photo_album",
"install-sample-from-source:jquery": "node ./scripts/install-sample-from-source.js samples/photo_album_with_jquery",
"webdriver:update": "webdriver-manager update",
"pree2e": "npm run webdriver:update",
"start-sample": "cd samples/photo_album && npm run start:e2e",
"start-sample:jquery": "npm run install-sample-from-source:jquery && cd samples/photo_album_with_jquery && npm run start:e2e",
"e2e": "npm run install-sample-from-source && concurrently \"npm run start-sample\" \"protractor protractor.config.js --baseUrl='http://localhost:4000/'\" --kill-others --success first",
"e2e:jquery": "npm run start-sample:jquery && protractor protractor.config.js --baseUrl='http://localhost:3000/' --kill-others --success first",
"ngc": "ngc",
"ngc:w": "ngc -w"
},
"repository": {
"type": "git",
"url": "git://github.com/cloudinary/cloudinary_angular.git"
},
"author": "Cloudinary",
"license": "MIT",
"bugs": {
"url": "https://github.com/cloudinary/cloudinary_angular/issues"
},
"homepage": "https://github.com/cloudinary/cloudinary_angular",
"dependencies": {},
"devDependencies": {
"@angular/animations": "^5.0.0",
"@angular/cli": "^8.3.14",
"@angular/common": "^5.0.0",
"@angular/compiler": "^5.0.0",
"@angular/compiler-cli": "^5.0.0",
"@angular/core": "^5.0.0",
"@angular/forms": "^5.0.0",
"@angular/http": "^5.0.0",
"@angular/platform-browser": "^5.0.0",
"@angular/platform-browser-dynamic": "^5.0.0",
"@angular/platform-server": "^5.0.0",
"@angular/router": "^5.0.0",
"@types/jasmine": "2.8.9",
"@types/node": "^8.0.51",
"@types/selenium-webdriver": "^3.0.8",
"canonical-path": "^0.0.2",
"cloudinary": "^1.9.1",
"cloudinary-core": "^2.7.3",
"concurrently": "^3.5.0",
"core-js": "^2.5.1",
"jasmine-core": "^3.4.0",
"karma": "^4.0.1",
"karma-chrome-launcher": "^2.2.0",
"karma-cli": "^1.0.1",
"karma-html": "^1.0.5",
"karma-htmlfile-reporter": "^0.3.8",
"karma-jasmine": "^2.0.0",
"karma-jasmine-html-reporter": "^1.4.0",
"karma-phantomjs-launcher": "^1.0.4",
"promise-polyfill": "^6.0.2",
"protractor": "^5.2.0",
"reflect-metadata": "^0.1.10",
"rxjs": "^5.5.2",
"systemjs": "^0.20.19",
"tslint": "^5.8.0",
"typescript": "^2.9.2",
"webdriver-manager": "^12.0.6",
"zone.js": "^0.8.18"
}
}