-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 903 Bytes
/
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
{
"name": "koalazily",
"version": "1.0.0",
"description": "Modern lazy image loading using Intersection Observer API",
"license": "MIT",
"repository": {
"url": "https://github.com/suyalcinkaya/koalazily",
"type": "git"
},
"homepage": "https://github.com/suyalcinkaya/koalazily",
"bugs": "https://github.com/suyalcinkaya/koalazily",
"source": "src/index.js",
"main": "dist/koalazily.js",
"umd:main": "dist/koalazily.umd.js",
"module": "dist/koalazily.m.js",
"files": [
"dist"
],
"scripts": {
"test": "jest",
"build": "microbundle",
"lint": "standard --fix src"
},
"author": "Onur Şuyalçınkaya",
"babel": {
"presets": [
[
"env"
]
]
},
"devDependencies": {
"babel-preset-env": "1.7.0",
"jest": "26.6.3",
"intersection-observer": "0.11.0",
"microbundle": "0.11.0",
"standard": "16.0.3"
}
}