-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.25 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
54
55
56
{
"name": "gridder-js",
"version": "0.7.0",
"description": "A JS plugin that displays a thumbnail grid expanding preview similar to the effect seen on Google Images.",
"keywords": [
"js",
"plugin",
"thumbnail",
"expanding",
"grid"
],
"homepage": "https://oriongunning.github.io/gridder-js/demo/",
"source": "src/gridder-js.js",
"main": "dist/gridder-js.js",
"module": "dist/gridder-js.mjs",
"standalone": "dist/gridder-js-min.js",
"targets": {
"main": {
"source": "src/gridder-js.js"
},
"module": {
"source": "src/gridder-js.js"
},
"standalone": {
"source": "tool/gridderjs-global.js",
"outputFormat": "global",
"optimize": true
},
"demo": {
"source": "demo/demo.scss"
}
},
"scripts": {
"watch": "parcel watch",
"build": "parcel build"
},
"repository": {
"type": "git",
"url": "https://github.com/oriongunning/gridder-js.git"
},
"bugs": {
"url": "https://github.com/oriongunning/gridder-js/issues"
},
"author": {
"name": "Orion Gunning"
},
"license": "MIT",
"dependencies": {
"just-extend": "^5.0.0"
},
"devDependencies": {
"@parcel/transformer-sass": "2.7.0",
"parcel": "latest",
"sass": "^1.33.0"
}
}