-
Notifications
You must be signed in to change notification settings - Fork 241
/
package.json
53 lines (45 loc) · 1.2 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
{
"name": "layzr.js",
"description": "A modern lazy loading library for images.",
"main": "dist/layzr.js",
"module": "dist/layzr.module.js",
"jsnext:main": "dist/layzr.module.js",
"version": "2.2.2",
"license": "MIT",
"repository": "callmecavs/layzr.js",
"author": {
"name": "Michael Cavalea",
"email": "[email protected]",
"url": "http://callmecavs.com/"
},
"scripts": {
"prebuild": "eslint src",
"build": "rollup -c",
"dev": "rollup -c -w -m inline",
"prepublish": "npm run build",
"server": "python -m SimpleHTTPServer 3000"
},
"keywords": [
"images",
"lazy",
"load",
"scroll"
],
"dependencies": {
"knot.js": "^1.1.5"
},
"devDependencies": {
"babel-eslint": "^7.1.1",
"babel-plugin-external-helpers": "^6.18.0",
"babel-preset-es2015-rollup": "^3.0.0",
"babel-preset-stage-0": "^6.16.0",
"eslint": "^3.13.0",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^2.0.1",
"rollup": "^0.41.1",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-node-resolve": "^2.0.0",
"rollup-watch": "^3.2.2"
}
}