-
Notifications
You must be signed in to change notification settings - Fork 128
/
package.json
50 lines (50 loc) · 1.1 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
{
"name": "gridder",
"version": "1.5.0",
"description": "A jQuery plugin that displays a thumbnail grid expanding preview similar to the effect seen on Google Images.",
"keywords": [
"jquery",
"plugin",
"thumbnail",
"expanding",
"grid"
],
"source": [
"src/jquery.gridder.js",
"src/scss/jquery.gridder.scss"
],
"targets": {
"css": {
"source": "src/scss/jquery.gridder.scss"
},
"js": {
"source": "src/jquery.gridder.js"
}
},
"main": "dist/js/jquery.gridder.js",
"scripts": {
"watch": "parcel watch",
"build": "parcel build"
},
"repository": {
"type": "git",
"url": "https://github.com/oriongunning/gridder.git"
},
"bugs": {
"url": "https://github.com/oriongunning/gridder/issues"
},
"author": {
"name": "Orion Gunning",
"email": "[email protected]",
"url": "http://www.oriongunning.com/"
},
"homepage": "http://www.oriongunning.com/",
"license": "MIT",
"devDependencies": {
"@parcel/transformer-sass": "2.8.3",
"parcel": "^2.8.3"
},
"dependencies": {
"jquery": "^3.7.0"
}
}