forked from thinker3197/progressively
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 949 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
{
"name": "progressively",
"version": "1.2.5",
"description": "A JavaScript library to load images progressively",
"main": "dist/progressively.min.js",
"scripts": {
"lint": "standard \"src/**/*.js\"",
"build:css": "cssnano src/progressively.css dist/progressively.min.css",
"build:js": "uglifyjs src/progressively.js -cm -o dist/progressively.min.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thinker3197/progressively.git"
},
"keywords": [
"progressive",
"lazy-load",
"images"
],
"author": "Ashish",
"license": "MIT",
"bugs": {
"url": "https://github.com/thinker3197/progressively/issues"
},
"homepage": "https://github.com/thinker3197/progressively/blob/master/README.md",
"devDependencies": {
"cssnano-cli": "^1.0.5",
"standard": "^8.6.0",
"uglify-js": "^3.0.11"
},
"standard": {
"globals": [
"define",
"Image"
]
}
}