-
Notifications
You must be signed in to change notification settings - Fork 225
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.89 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.89 KB
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
{
"name": "@cloudinary/angular",
"version": "2.1.1",
"description": "The formal Cloudinary Angular SDK to enhance your applications with image and video components powered by Cloudinary",
"keywords": [
"cloudinary",
"angular",
"angular2",
"angularjs",
"ng",
"ng2",
"image",
"images",
"video",
"sdk",
"performance"
],
"main": "index.js",
"types": "index.ts",
"scripts": {
"lint": "tslint **/*.ts -t verbose --exclude=**/*.d.ts",
"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": {
"@angular/common": "^2.4.3",
"@angular/compiler-cli": "^2.2.4",
"@angular/core": "^2.4.3",
"@angular/platform-server": "^2.4.3",
"core-js": "^2.4.1",
"reflect-metadata": "^0.1.8",
"rxjs": "^5.0.1",
"zone.js": "^0.7.2"
},
"devDependencies": {
"@angular/compiler": "^2.4.3",
"@angular/platform-browser": "^2.4.3",
"@angular/platform-browser-dynamic": "^2.4.3",
"@types/jasmine": "^2.5.36",
"@types/node": "^6.0.46",
"@types/selenium-webdriver": "^2.53.36",
"canonical-path": "0.0.2",
"cloudinary": "^1.4.6",
"cloudinary-core": "^2.1.9",
"concurrently": "^3.1.0",
"jasmine-core": "^2.4.1",
"karma": "^1.3.0",
"karma-chrome-launcher": "^2.0.0",
"karma-cli": "^1.0.1",
"karma-htmlfile-reporter": "^0.3.4",
"karma-jasmine": "^1.0.2",
"karma-jasmine-html-reporter": "^0.2.2",
"karma-phantomjs-launcher": "^1.0.2",
"protractor": "^4.0.12",
"systemjs": "^0.19.41",
"tslint": "^4.2.0",
"typescript": "^2.0.10",
"webdriver-manager": "^10.2.10"
}
}