-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.11 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
{
"name": "better-justified-layout",
"version": "1.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",
"dist",
"src"
],
"main": "./dist/better-justified-layout.js",
"scripts": {
"dev": "cross-env NODE_ENV=dev rollup --config --watch --sourcemap",
"build": "rollup --config --sourcemap",
"lint": "eslint ./src",
"test": "jest"
},
"repository": {
"type": "git",
"url": "[email protected]:nk-o/better-justified-layout.git"
},
"license": "MIT",
"devDependencies": {
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.5",
"@rollup/plugin-terser": "^0.4.4",
"babel-plugin-annotate-pure-calls": "^0.4.0",
"cross-env": "^7.0.3",
"eslint": "^8.56.0",
"eslint-config-flickr": "^3.0.0",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"rollup": "^4.9.6",
"rollup-plugin-serve": "^2.0.3"
}
}