forked from tjoskar/ng-lazyload-image
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 3.09 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
{
"name": "ng-lazyload-image",
"version": "3.4.2",
"description": "Lazy image loader for Angular > v2",
"main": "index.js",
"scripts": {
"prepare": "npm run build",
"test": "karma start karma.local.js",
"test:ci": "karma start karma.ci.js",
"start": "webpack-dev-server --progress --profile --colors --watch",
"build": "copyfiles -u 1 dist/package.json .backup && rimraf dist && tsc && ngc src && copyfiles LICENSE README.md dist && copyfiles -u 1 .backup/package.json dist && rimraf dist/example dist/test .backup",
"build:example": "rimraf example-dist && webpack --config webpack.prod.config.js --profile && rimraf example-dist/example example-dist/src && copyfiles -u 1 example/style.css example/index.html example-dist",
"e2e": "protractor",
"e2e:ci": "protractor protractor.ci.conf.js",
"webdriver:update": "webdriver-manager update",
"webdriver:start": "webdriver-manager start",
"e2e:debug": "protractor --elementExplorer"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tjoskar/ng-lazyload-image.git"
},
"keywords": [
"lazy-load",
"lazy-image",
"angular"
],
"author": "Oskar Karlsson <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tjoskar/ng-lazyload-image/issues"
},
"homepage": "https://github.com/tjoskar/ng-lazyload-image#readme",
"peerDependencies": {
"@angular/core": ">=2.0.0",
"rxjs": ">=5.0.0"
},
"dependencies": {},
"devDependencies": {
"@angular/animations": "^4.2.6",
"@angular/common": "^4.2.6",
"@angular/compiler": "^4.2.6",
"@angular/compiler-cli": "^4.2.6",
"@angular/core": "^4.2.6",
"@angular/platform-browser": "^4.2.6",
"@angular/platform-browser-dynamic": "^4.2.6",
"@angular/platform-server": "^4.2.6",
"@angular/router": "^4.2.6",
"@types/core-js": "^0.9.46",
"@types/mocha": "^5.0.0",
"@types/node": "^9.4.0",
"awesome-typescript-loader": "^3.4.1",
"copyfiles": "^2.0.0",
"core-js": "^2.5.3",
"electron": "^1.7.12",
"karma": "^2.0.0",
"karma-electron-launcher": "^0.2.0",
"karma-mocha": "^1.1.1",
"karma-sauce-launcher": "^1.1.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^3.0.0",
"lodash.isequal": "^4.5.0",
"mocha": "^5.0.0",
"null-loader": "^0.1.1",
"protractor": "^5.3.0",
"rimraf": "^2.6.1",
"rxjs": "5.5.6",
"simple-spy": "^2.1.1",
"source-map-loader": "^0.2.1",
"typescript": "^2.4.2",
"wallaby-webpack": "^3.9.4",
"webpack": "^4.2.0",
"webpack-cli": "^2.0.13",
"webpack-dev-server": "^3.0.0",
"zone.js": "^0.8.19"
},
"gitmoji": {
"blacklist": [
"rocket",
"tada",
"apple",
"penguin",
"checkered-flag",
"robot",
"green-apple",
"construction-worker",
"chart-with-upwards-trend",
"whale",
"globe-with-meridians",
"hankey",
"package",
"bento",
"wheelchair",
"beers",
"speech-balloon",
"card-file-box",
"loud-sound",
"mute",
"children-crossing",
"iphone"
]
}
}