-
Notifications
You must be signed in to change notification settings - Fork 156
/
package.json
49 lines (49 loc) · 1.23 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
{
"name": "macy",
"description": "Macy is a lightweight, dependency free, masonry layout library",
"version": "2.5.1",
"author": {
"name": "Big Bite Creative",
"url": "http://bigbitecreative.com",
"twitter": "@bigbitecreative"
},
"keywords": [
"masonry",
"layout"
],
"main": "dist/macy.js",
"homepage": "http://macyjs.com/",
"repository": "https://github.com/bigbitecreative/macy.js",
"bugs": {
"url": "https://github.com/bigbitecreative/macy.js/issues"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"license": "MIT",
"engines": {
"node": ">= 0.9"
},
"devDependencies": {
"@babel/cli": "^7.8.3",
"@babel/core": "^7.8.3",
"babel-core": "^6.24.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-es2015-modules-umd": "*",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-preset-es2015": "^6.24.0",
"jshint": "^2.9.4",
"rollup": "^0.41.6",
"rollup-plugin-babel": "^2.7.1",
"rollup-plugin-uglify": "^1.0.1",
"rollup-watch": "^3.2.2"
},
"scripts": {
"build": "rollup -c",
"build-dev": "rollup -c --environment build:dev",
"watch": "rollup -c -w --environment build:dev"
},
"dependencies": {}
}