-
Notifications
You must be signed in to change notification settings - Fork 197
/
package.json
54 lines (46 loc) · 1.24 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
{
"name": "bricks.js",
"description": "A blazing fast masonry layout generator for fixed width elements.",
"main": "dist/bricks.js",
"module": "dist/bricks.module.js",
"jsnext:main": "dist/bricks.module.js",
"version": "1.8.0",
"license": "MIT",
"repository": "callmecavs/bricks.js",
"author": {
"name": "Michael Cavalea",
"email": "[email protected]",
"url": "http://callmecavs.com/"
},
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w -m inline",
"lint": "eslint src",
"prebuild": "rm -rf dist",
"prepublish": "npm run test",
"pretest": "npm run build",
"server": "python -m SimpleHTTPServer 3000",
"test": "npm run lint"
},
"keywords": [
"grid",
"masonry",
"layout",
"packing"
],
"dependencies": {
"knot.js": "^1.1.5"
},
"devDependencies": {
"babel-eslint": "^7.1.1",
"babel-preset-env": "^1.2.2",
"eslint": "^3.13.0",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-promise": "^3.4.0",
"eslint-plugin-standard": "^2.0.1",
"rollup": "^0.41.1",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-node-resolve": "^2.0.0",
"rollup-watch": "^3.2.2"
}
}