-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 832 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 832 Bytes
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": "@fallroot/tada",
"version": "0.2.4",
"description": "Lightweight, no dependency library for lazy image load.",
"author": "CK Moon <fallroot@gmail.com>",
"main": "build/tada.js",
"scripts": {
"build": "webpack -p --config ./src/webpack.config.js"
},
"repository": {
"type": "git",
"url": "https://github.com/fallroot/tada"
},
"bugs": {
"url": "https://github.com/fallroot/tada/issues"
},
"keywords": [
"lazy",
"load",
"intersectionobserver"
],
"devDependencies": {
"@babel/core": "^7.0.1",
"@babel/preset-env": "^7.0.0",
"babel-loader": "^8.0.2",
"standard": "12.0.1",
"webpack": "^4.18.0",
"webpack-cli": "^3.1.0"
},
"license": "MIT",
"standard": {
"env": {
"browser": true
},
"ignore": [
"/build/"
]
}
}