forked from airfranceklm/ng-lazy-image
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.96 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
{
"name": "angular-lazy-image",
"main": "./release/lazy-image.js",
"version": "0.3.1",
"homepage": "http://afklm.github.io/ng-lazy-image/",
"keywords": [
"angular",
"directive",
"lazy",
"image"
],
"repository": {
"type": "git",
"url": "http://github.com/afklm/ng-lazy-image.git"
},
"authors": [
"KLM Royal Dutch Airlines",
"Maarten van Oudenniel <[email protected]>"
],
"description": "Loading responsive image when container (which is preventing reflow) is in view.",
"license": "MIT",
"engines": {
"node": ">=2.14.x",
"npm": ">=1.3.x"
},
"devDependencies": {
"grunt": "~0.4.5",
"time-grunt": "~1.2.1",
"load-grunt-config": "~0.17.2",
"grunt-bower-task": "~0.4.0",
"grunt-shell": "~1.1.2",
"grunt-contrib-connect": "~0.11.2",
"grunt-contrib-copy": "~0.8.1",
"grunt-contrib-uglify": "~0.9.2",
"grunt-contrib-watch": "~0.6.1",
"grunt-contrib-clean": "~0.6.0",
"grunt-contrib-jshint": "~0.11.3",
"grunt-contrib-cssmin": "~0.13.0",
"grunt-replace": "~0.11.0",
"jshint-junit-reporter": "~0.2.2",
"grunt-protractor-runner": "~2.1.0",
"grunt-ng-annotate": "~1.0.1",
"karma": "~0.13.9",
"grunt-karma": "~0.12.1",
"grunt-karma-coveralls": "~2.5.4",
"karma-coverage": "~0.5.2",
"karma-junit-reporter": "~0.3.4",
"karma-ng-scenario": "latest",
"protractor": "~2.2.0",
"shelljs": "^0.5.3",
"karma-chrome-launcher": "~0.2.0",
"karma-firefox-launcher": "~0.1.4",
"karma-ie-launcher": "~0.2.0",
"karma-phantomjs-launcher": "~0.2.1",
"karma-jasmine": "~0.3.6",
"express": "latest",
"grunt-gh-pages": "~0.10.0"
},
"peerDependencies": {
"angular": "^1.3.0"
},
"files": [
"README.md",
"LICENSE.md",
"release/",
"src/"
],
"scripts": {
"test": "karma start config/karma.conf.js",
"update-webdriver": "webdriver-manager update",
"selenium": "node_modules/protractor/bin/webdriver-manager"
}
}