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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
{
"_from": "justified-layout@^3.0.0",
"_id": "justified-layout@3.0.0",
"_inBundle": false,
"_integrity": "sha512-xki5bVJ84HokIV47mfHdmWB56zFrQKbtrU5KHA5GoatOnRwQWGOvNtBlbW8dU0yIa3pNmCPuacuuMRPvM9p5mg==",
"_location": "/justified-layout",
"_phantomChildren": {},
"_requested": {
"type": "range",
"registry": true,
"raw": "justified-layout@^3.0.0",
"name": "justified-layout",
"escapedName": "justified-layout",
"rawSpec": "^3.0.0",
"saveSpec": null,
"fetchSpec": "^3.0.0"
},
"_requiredBy": [
"/"
],
"_resolved": "https://registry.npmjs.org/justified-layout/-/justified-layout-3.0.0.tgz",
"_shasum": "f8643ac51d97cf43dd40ddf38601161968ff8165",
"_spec": "justified-layout@^3.0.0",
"_where": "/Users/kwpolska/git/nikola/npm_assets",
"bugs": {
"url": "https://github.com/flickr/justified-layout/issues"
},
"bundleDependencies": false,
"dependencies": {
"merge": "1.2.1"
},
"deprecated": false,
"description": "Pass in box sizes and get back sizes and coordinates for a justified layout",
"devDependencies": {
"browserify": "^16.2.3",
"coveralls": "^2.11.9",
"eslint": "^4.18.2",
"eslint-config-flickr": "^2.0.1",
"expect": "1.14.0",
"istanbul": "^0.4.2",
"mocha": "^6.1.4",
"uglify-js": "2.6.2"
},
"files": [
"demo.html",
"dist",
"lib"
],
"homepage": "https://github.com/flickr/justified-layout#readme",
"keywords": [
"justify",
"grid",
"photos",
"layout",
"boxes"
],
"license": "ISC",
"main": "./lib/index.js",
"name": "justified-layout",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/flickr/justified-layout.git"
},
"scripts": {
"build": "npm run build-dist && npm run build-min",
"build-dist": "mkdir -p dist && browserify -r $npm_package_main:justified-layout > dist/justified-layout.js",
"build-min": "uglifyjs dist/justified-layout.js --comments -o dist/justified-layout.min.js",
"coverage": "cat ./coverage/lcov.info | coveralls",
"lint": "eslint .",
"prepublish": "npm run build",
"test": "istanbul test _mocha"
},
"version": "3.0.0"
}
|