forked from tjoskar/ng-lazyload-image
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
117 lines (117 loc) · 3.24 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"$schema": "./node_modules/ng-packagr/package.schema.json",
"name": "@purple/ng-lazyload-image",
"version": "5.1.4",
"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": "ng-packagr -p package.json",
"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"
},
"ngPackage": {
"lib": {
"entryFile": "index.ts"
}
},
"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": ">=6.0.0",
"rxjs": ">=6.0.0"
},
"dependencies": {},
"devDependencies": {
"@angular/animations": "^6.0.2",
"@angular/common": "^6.0.2",
"@angular/compiler": "^6.0.2",
"@angular/compiler-cli": "^6.0.2",
"@angular/core": "^6.0.2",
"@angular/platform-browser": "^6.0.2",
"@angular/platform-browser-dynamic": "^6.0.2",
"@angular/platform-server": "^6.0.2",
"@angular/router": "^6.0.2",
"@tjoskar/assert": "^1.0.0",
"@types/core-js": "^0.9.46",
"@types/mocha": "^5.2.5",
"@types/node": "^10.1.2",
"awesome-typescript-loader": "^5.0.0",
"copyfiles": "^2.1.0",
"core-js": "^2.5.6",
"electron": "^3.0.7",
"karma": "^3.1.1",
"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.5",
"lodash.isequal": "^4.5.0",
"marble-test": "^3.0.0",
"mocha": "^5.2.0",
"ng-packagr": "^4.7.1",
"null-loader": "^0.1.1",
"protractor": "^5.4.1",
"rimraf": "^2.6.1",
"rxjs": "6.1.0",
"simple-spy": "^2.1.1",
"source-map-loader": "^0.2.4",
"typescript": "2.7.2",
"wallaby-webpack": "^3.9.13",
"webpack": "^4.23.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10",
"zone.js": "^0.8.26"
},
"prettier": {
"singleQuote": true,
"tabWidth": 2,
"printWidth": 200
},
"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"
]
}
}