-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.36 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
{
"title": "Image Loader",
"name": "properjs-imageloader",
"description": "Bullet-proof lazy-loading images with contextual load conditions.",
"version": "0.4.0",
"homepage": "https://github.com/ProperJS/ImageLoader",
"readmeFilename": "README.md",
"contributors": [
{
"name": "Brandon Lee Kitajchuk",
"email": "[email protected]",
"url": "https://kitajchuk.com"
}
],
"repository": {
"type": "git",
"url": "git://github.com/ProperJS/ImageLoader.git"
},
"bugs": {
"url": "https://github.com/ProperJS/ImageLoader/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/ProperJS/ImageLoader/blob/master/LICENSE"
}
],
"main": "ImageLoader",
"keywords": [
"properjs",
"loader",
"image loader",
"lazyload"
],
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/polyfill": "^7.8.7",
"@babel/preset-env": "^7.9.0",
"babel-loader": "^8.1.0",
"eslint": "^7.2.0",
"eslint-loader": "^4.0.2",
"webpack": "^4.42.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0"
},
"scripts": {
"test": "./node_modules/.bin/webpack --progress --profile --display-modules --colors",
"start": "npm run test ; node_modules/.bin/webpack-dev-server"
},
"dependencies": {
"properjs-controller": ">=0.3.0"
}
}