forked from flickr/justified-layout
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.34 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": "justified-layout",
"version": "2.0.0",
"description": "Pass in box sizes and get back sizes and coordinates for a justified layout",
"keywords": [
"justify",
"grid",
"photos",
"layout",
"boxes"
],
"files": [
"demo.html",
"dist",
"lib"
],
"bugs": {
"url": "https://github.com/flickr/justified-layout/issues",
"email": "[email protected]"
},
"main": "./lib/index.js",
"scripts": {
"lint": "eslint .",
"test": "istanbul test _mocha",
"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",
"prepublish": "npm run build"
},
"repository": {
"type": "git",
"url": "[email protected]:flickr/justified-layout.git"
},
"author": "Flickr Open Source <[email protected]>",
"license": "ISC",
"devDependencies": {
"browserify": "~11.1.0",
"coveralls": "^2.11.9",
"eslint": "^2.13.1",
"eslint-config-flickr": "~1.1.8",
"expect": "1.14.0",
"istanbul": "^0.4.2",
"mocha": "2.4.5",
"uglify-js": "2.6.2"
},
"dependencies": {
"merge": "1.2.0"
}
}